mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-20 09:20:12 +01:00
buttons page in progress
This commit is contained in:
parent
85d5441f71
commit
85072185e9
19 changed files with 372 additions and 0 deletions
20
src/app/pages/ui/components/buttons/buttons.component.ts
Normal file
20
src/app/pages/ui/components/buttons/buttons.component.ts
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import {Component, ViewEncapsulation} from '@angular/core';
|
||||
|
||||
import {BaCard} from '../../../../theme/components';
|
||||
import {FlatButtons} from './components/flatButtons';
|
||||
import {RaisedButtons} from './components/raisedButtons';
|
||||
import {SizedButtons} from './components/sizedButtons';
|
||||
import {DisabledButtons} from './components/disabledButtons';
|
||||
|
||||
@Component({
|
||||
selector: 'buttons',
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
directives: [BaCard, FlatButtons, RaisedButtons, SizedButtons, DisabledButtons],
|
||||
styles: [require('./buttons.scss')],
|
||||
template: require('./buttons.html'),
|
||||
})
|
||||
export class Buttons {
|
||||
|
||||
constructor() {
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue