mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
12 lines
247 B
TypeScript
12 lines
247 B
TypeScript
import { Component, ComponentInterface } from '@stencil/core';
|
|
|
|
@Component({
|
|
tag: 'ion-buttons',
|
|
styleUrls: {
|
|
ios: 'buttons.ios.scss',
|
|
md: 'buttons.md.scss'
|
|
},
|
|
scoped: true,
|
|
})
|
|
export class Buttons implements ComponentInterface {}
|