UNPKG

shadcn-react

Version:
12 lines (11 loc) 383 B
/// <reference types="react" /> export type AlertVariant = 'default' | 'destructive'; export interface AlertProps { variant?: AlertVariant; icon?: React.ReactNode; title?: React.ReactNode; children?: React.ReactNode; className?: string; style?: React.CSSProperties; } export declare function Alert(props: AlertProps): import("react/jsx-runtime").JSX.Element;