@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
12 lines (11 loc) • 398 B
TypeScript
import type { IconAPI, IconStates, LabelPropType } from '../../schema';
import type { JSX } from '../../stencil-public-runtime';
export declare class KolIcon implements IconAPI {
render(): JSX.Element;
_icons: string;
_label: LabelPropType;
state: IconStates;
validateIcons(value?: string): void;
validateLabel(value?: LabelPropType): void;
componentWillLoad(): void;
}