import type { VariantProps } from "class-variance-authority"; import type * as React from "react"; import { cva } from "class-variance-authority"; import { cn } from "@reactive-resume/utils/style"; const alertVariants = cva( "group/alert relative grid w-full gap-0.5 rounded-lg border p-4 text-start text-sm has-data-[slot=alert-action]:relative has-[>svg]:grid-cols-[auto_1fr] has-[>svg]:gap-x-2 has-data-[slot=alert-action]:pe-18 *:[svg:not([class*='size-'])]:size-4 *:[svg]:row-span-2 *:[svg]:translate-y-0.5 *:[svg]:text-current", { variants: { variant: { default: "bg-card text-card-foreground", destructive: "bg-card text-destructive *:data-[slot=alert-description]:text-destructive/90 *:[svg]:text-current", }, }, defaultVariants: { variant: "default", }, }, ); function Alert({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps) { return
; } function AlertTitle({ className, ...props }: React.ComponentProps<"div">) { return (
svg]/alert:col-start-2", className)} {...props} /> ); } function AlertDescription({ className, ...props }: React.ComponentProps<"div">) { return (
); } function AlertAction({ className, ...props }: React.ComponentProps<"div">) { return
; } export { Alert, AlertAction, AlertDescription, AlertTitle };