mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-12 19:41:38 +00:00
17 lines
458 B
TypeScript
17 lines
458 B
TypeScript
import { Component, ViewEncapsulation } from '@angular/core';
|
|
import { FormControl } from '@angular/forms';
|
|
|
|
/**
|
|
* @title Select with custom panel styling
|
|
*/
|
|
@Component({
|
|
selector : 'select-panel-class-example',
|
|
templateUrl : 'select-panel-class-example.html',
|
|
styleUrls : ['select-panel-class-example.css'],
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class SelectPanelClassExample
|
|
{
|
|
panelColor = new FormControl('red');
|
|
}
|