UNPKG

@public-ui/components

Version:

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

11 lines (10 loc) 416 B
import { type FunctionalComponent as FC } from '../../stencil-public-runtime'; import type { JSXBase } from '../../stencil-public-runtime'; import { type Toast } from '../../schema'; type ToastItemProps = JSXBase.HTMLAttributes<HTMLDivElement> & { status: 'adding' | 'settled' | 'removing'; toast: Toast; onClose: () => void; }; declare const ToastItemFc: FC<ToastItemProps>; export default ToastItemFc;