@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
12 lines (11 loc) • 364 B
TypeScript
import { type FunctionalComponent as FC } from '../../stencil-public-runtime';
import type { InternalIconProps } from '../../schema';
export type IconProps = InternalIconProps & {
class?: string;
style?: {
[key: string]: string;
};
onClick?: (event: MouseEvent) => void;
};
declare const KolIconFc: FC<IconProps>;
export default KolIconFc;