mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00
chore(): moved themes into ionic and created components folder.
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
import { Component, h, Prop } from '../index';
|
||||
|
||||
|
||||
@Component({
|
||||
tag: 'ion-skeleton-text',
|
||||
styleUrls: 'skeleton-text.scss'
|
||||
})
|
||||
export class SkeletonText {
|
||||
@Prop() width: string = '100%';
|
||||
|
||||
render() {
|
||||
return <span style={{width: this.width}}> </span>;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user