mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-17 13:55:13 +00:00
21 lines
451 B
TypeScript
Executable File
21 lines
451 B
TypeScript
Executable File
import {Component} from '@angular/core';
|
|
|
|
/**
|
|
* @title Stacked chips
|
|
*/
|
|
@Component({
|
|
selector: 'chips-stacked-example',
|
|
templateUrl: 'chips-stacked-example.html',
|
|
styleUrls: ['chips-stacked-example.css'],
|
|
})
|
|
export class ChipsStackedExample {
|
|
color: string;
|
|
|
|
availableColors = [
|
|
{ name: 'none', color: '' },
|
|
{ name: 'Primary', color: 'primary' },
|
|
{ name: 'Accent', color: 'accent' },
|
|
{ name: 'Warn', color: 'warn' }
|
|
];
|
|
}
|