UNPKG

angular2-simple-ui

Version:

Angular 2 Simple Material Design UI Components customisable with Simple 30 KB CSS with LESS support and full features support , just plugin up and run for clarity look at sample examples

15 lines (11 loc) 370 B
import { Component, Input, Output, EventEmitter, OnInit } from '@angular/core'; @Component({ selector: 'sui-list', templateUrl: './sui.list.component.html', }) export class ListComponent { @Input() listClass: string; @Input() listStyle: Object = {}; @Input() listItems: string[] = []; @Input() customTemplate: boolean = false; }