UNPKG

@public-ui/components

Version:

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

8 lines (7 loc) 373 B
import { type FunctionalComponent as FC } from '../../stencil-public-runtime'; import type { JSXBase } from '../../stencil-public-runtime'; export type CustomSuggestionsToggleProps = JSXBase.HTMLAttributes<HTMLButtonElement> & { disabled?: boolean; }; declare const CustomSuggestionsToggleFc: FC<CustomSuggestionsToggleProps>; export default CustomSuggestionsToggleFc;