flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
15 lines (14 loc) • 438 B
TypeScript
import { JSXOutput, PropsOf, QRL } from '@builder.io/qwik';
import { ToastAlign, ToastType } from './toast-type';
type ToastProps = PropsOf<'div'> & {
id: string;
type?: ToastType;
time?: number;
alignment?: ToastAlign;
divide?: boolean;
closable?: boolean;
onClose$?: QRL<(id: string) => void>;
icon?: JSXOutput;
};
export declare const Toast: import("@builder.io/qwik").Component<ToastProps>;
export {};