0.0.1 • Published 2 years ago

custom-angular-component v0.0.1

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

CustomAngularComponent

📂 | Installation

📜 | Setup

ComponentAppearance = 'filled' | 'outline';
ComponentShape = 'rectangle' | 'semi-round' | 'round';
ComponentSize = 'tiny' | 'small' | 'medium' | 'large' | 'giant';
ComponentStatus = 'basic' | 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'control';

| Examples

<button libCustomComponent status="info" size="medium" (click)="clickFunction($event)">Hello</button>
<input libCustomComponent status="primary" size="medium" shape="semi-round"/>
<checkbox libCustomComponent status="warning" checked (checkedChange)="change($event)"></checkbox>
<radio libCustomComponent status="danger" checked="true"></radio>