@asi-ngtools/lib
Version:
This project is a little components library, simple to use, which will help you to simplify your project.
18 lines (17 loc) • 683 B
TypeScript
import { DefaultControlValueAccessor } from './../common/default-control-value-accessor';
import { OnInit, Renderer2, ElementRef } from '@angular/core';
export declare class AsiIconCheckboxComponent extends DefaultControlValueAccessor implements OnInit {
private renderer;
private elementRef;
/** Label to display (is translated) */
label: string;
/** Label position */
labelPosition: 'top' | 'left' | 'right' | 'bottom' | 'bottom-center' | 'top-center';
/** font awesome icon to use */
icon: string;
/** icon size */
size: string;
constructor(renderer: Renderer2, elementRef: ElementRef);
ngOnInit(): void;
toggleCheck(): void;
}