import * as React from 'react' import { Alert as MantineAlert, Box, Text } from '@mantine/core' type AlertVariant = 'default' | 'destructive' const variantColorMap: Record = { default: undefined, destructive: 'red', } 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 }