import { Component, h, Prop } from '@stencil/core'; @Component({ tag: 'ion-skeleton-text', styleUrls: 'skeleton-text.scss' }) export class SkeletonText { @Prop() width: string = '100%'; render() { return  ; } }