mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
15 lines
227 B
TypeScript
15 lines
227 B
TypeScript
import { Component } from '@stencil/core';
|
|
|
|
|
|
@Component({
|
|
tag: 'ion-thumbnail',
|
|
styleUrls: {
|
|
ios: 'thumbnail.ios.scss',
|
|
md: 'thumbnail.md.scss'
|
|
},
|
|
host: {
|
|
theme: 'thumbnail'
|
|
}
|
|
})
|
|
export class Thumbnail {}
|