UNPKG

ipsos-components

Version:

Material Design components for Angular

16 lines (14 loc) 449 B
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'); }