chore(): moved themes into ionic and created components folder.

This commit is contained in:
Josh Thomas
2017-06-21 10:14:08 -05:00
parent bd5b67304d
commit d0844c585d
213 changed files with 6387 additions and 0 deletions

View File

@ -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}}>&nbsp;</span>;
}
}