UNPKG

@public-ui/components

Version:

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

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