@starter-ui/core
Version:
This is a UI Components built with the utility classes from Tailwind CSS.
12 lines (11 loc) • 375 B
TypeScript
import { PropsWithChildren } from 'react';
interface Props {
id?: string;
type?: string;
outline?: boolean;
closeable?: boolean;
className?: string;
onClose?: () => void;
}
declare const Alert: ({ id, type, outline, closeable, className, children, onClose }: PropsWithChildren<Props>) => import("react/jsx-runtime").JSX.Element;
export default Alert;