mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 16:16:41 +08:00
chore(packages): move the packages to root
This commit is contained in:
20
core/src/components/skeleton-text/skeleton-text.tsx
Normal file
20
core/src/components/skeleton-text/skeleton-text.tsx
Normal file
@ -0,0 +1,20 @@
|
||||
import { Component, Prop } from '@stencil/core';
|
||||
|
||||
|
||||
@Component({
|
||||
tag: 'ion-skeleton-text',
|
||||
styleUrls: {
|
||||
ios: 'skeleton-text.ios.scss',
|
||||
md: 'skeleton-text.md.scss'
|
||||
},
|
||||
host: {
|
||||
theme: 'skeleton-text'
|
||||
}
|
||||
})
|
||||
export class SkeletonText {
|
||||
@Prop() width = '100%';
|
||||
|
||||
render () {
|
||||
return <span style={{width: this.width}}> </span>;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user