flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
14 lines (13 loc) • 584 B
TypeScript
import { Component, JSXOutput, PropsOf } from '@builder.io/qwik';
import type { IconProps } from 'flowbite-qwik-icons';
type AlertColor = 'info' | 'failure' | 'success' | 'warning' | 'blue' | 'cyan' | 'dark' | 'gray' | 'green' | 'indigo' | 'light' | 'lime' | 'pink' | 'purple' | 'red' | 'teal' | 'yellow';
type AlertProps = PropsOf<'div'> & {
additionalContent?: JSXOutput;
color?: AlertColor;
icon?: Component<IconProps>;
onDismiss$?: () => void;
rounded?: boolean;
withBorderAccent?: boolean;
};
export declare const Alert: Component<AlertProps>;
export {};