Files

73 lines
959 B
TypeScript

import {IonicPlatform, IonicView} from 'ionic/ionic';
@IonicView({
templateUrl: 'buttons/buttons.html',
})
export class ButtonsPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/block.html',
})
export class BlockButtonsPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/full.html',
})
export class FullButtonsPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/outline.html',
})
export class OutlineButtonsPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/round.html',
})
export class RoundButtonsPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/fab.html',
})
export class FabPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/sizes.html',
})
export class ButtonSizesPage {
constructor() {
}
}
@IonicView({
templateUrl: 'buttons/icons.html',
})
export class IconButtonsPage {
constructor() {
}
}