@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
12 lines (11 loc) • 462 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
import type { LabelPropType, IconProps, IconWatches } from '../../schema';
type Component = Generic.Element.Component & IconProps;
export declare class IconController implements IconWatches {
protected readonly component: Component;
constructor(component: Component);
validateIcons(value?: string): void;
validateLabel(value?: LabelPropType): void;
componentWillLoad(): void;
}
export {};