UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

10 lines (9 loc) 395 B
import { type FunctionalComponent as FC } from '../../stencil-public-runtime'; import type { OptionalButtonProps, RequiredButtonProps } from '../../schema'; export type ButtonProps = Partial<RequiredButtonProps & OptionalButtonProps> & { label: string; class?: string; onClick?: (event: MouseEvent) => void; }; declare const KolButtonFc: FC<ButtonProps>; export default KolButtonFc;