UNPKG

@kelvininc/ui-components

Version:
19 lines (18 loc) 512 B
import { EventEmitter } from '../../stencil-public-runtime'; import { ICheckbox, ICheckboxEvents } from './checkbox.types'; /** * @part icon - The icon element. */ export declare class KvCheckbox implements ICheckbox, ICheckboxEvents { /** @inheritdoc */ checked?: boolean; /** @inheritdoc */ disabled?: boolean; /** @inheritdoc */ indeterminate?: boolean; /** @inheritdoc */ clickCheckbox: EventEmitter<void>; private getIconName; private onClick; render(): any; }