import * as React from 'react' import { Alert as MantineAlert, Box, Text } from '@mantine/core' type AlertVariant = 'default' | 'destructive' | 'success' | 'warning' | 'info' const variantColorMap: Record = { default: undefined, destructive: 'red', success: 'green', warning: 'yellow', info: 'blue', } function Alert({ className, variant = 'default', children, ...props }: React.ComponentProps<'div'> & { variant?: AlertVariant }) { return ( {children} ) } function AlertTitle({ className, ...props }: React.ComponentProps<'div'>) { return ( ) } function AlertDescription({ className, ...props }: React.ComponentProps<'div'>) { return ( ) } function AlertAction({ className, style, ...props }: React.ComponentProps<'div'>) { return ( ) } const alertVariants = {} as const export { Alert, AlertTitle, AlertDescription, AlertAction, alertVariants }