UNPKG

ivt

Version:

Ivt Components Library

17 lines (14 loc) 962 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import * as class_variance_authority_types from 'class-variance-authority/types'; import { VariantProps } from 'class-variance-authority'; import React__default from 'react'; declare const alertVariants: (props?: ({ variant?: "default" | "destructive" | "warning" | "info" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; interface AlertProps extends React__default.ComponentProps<"div">, VariantProps<typeof alertVariants> { subtle?: boolean; } declare function Alert({ className, variant, subtle, ...props }: AlertProps): react_jsx_runtime.JSX.Element; declare function AlertTitle({ className, ...props }: React__default.ComponentProps<"div">): react_jsx_runtime.JSX.Element; declare function AlertDescription({ className, ...props }: React__default.ComponentProps<"div">): react_jsx_runtime.JSX.Element; export { Alert, AlertDescription, AlertTitle };