@koalarx/ui
Version:
Koala UI is a Design System developed in Angular whose objective is to facilitate and make your development faster and simpler, making this framework your greatest ally.
19 lines (18 loc) • 860 B
TypeScript
import { OnInit } from '@angular/core';
import { KoalaIconType } from '@koalarx/ui/icon';
import * as i0 from "@angular/core";
export declare class ButtonComponent implements OnInit {
color: string;
backgroundColor: string;
icon?: string | KoalaIconType;
text?: string;
tooltip?: string;
disabled?: boolean;
koalaIcon: boolean;
koalaIconSize: number;
style?: string;
ngOnInit(): void;
getKoalaIcon(): KoalaIconType;
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "koala-button", never, { "color": "color"; "backgroundColor": "backgroundColor"; "icon": "icon"; "text": "text"; "tooltip": "tooltip"; "disabled": "disabled"; "koalaIcon": "koalaIcon"; "koalaIconSize": "koalaIconSize"; }, {}, never, never, false>;
}