Displays a callout for user attention with various styling options in neobrutalism design.
1"use client";
2
3import { type VariantProps, cva } from "class-variance-authority";
4import * as React from "react";
5
6// Utility function for class name merging
7const cn = (...classes: any[]) => classes.filter(Boolean).join(" ");
8
9const alertVariants = cva(
10 "relative w-full rounded-base shadow-shadow font-heading border-2 border-border p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-mtext",
11 {
12 variants: {
13 variant: {
14 default: "bg-main text-mtext",
15 destructive: "bg-black text-white",
16 },
17 },
18 defaultVariants: {
19 variant: "default",
20 },
21 }
22);
23
24const Alert = React.forwardRef<
25 HTMLDivElement,
26 React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof alertVariants>
27>(({ className, variant, ...props }, ref) => (
28 <div
29 ref={ref}
30 role="alert"
31 className={cn(alertVariants({ variant }), className)}
32 {...props}
33 />
34));
35Alert.displayName = "Alert";
36
37const AlertTitle = React.forwardRef<
38 HTMLParagraphElement,
39 React.HTMLAttributes<HTMLHeadingElement>
40>(({ className, ...props }, ref) => (
41 <h5
42 ref={ref}
43 className={cn("mb-1 leading-none tracking-tight", className)}
44 {...props}
45 />
46));
47AlertTitle.displayName = "AlertTitle";
48
49const AlertDescription = React.forwardRef<
50 HTMLParagraphElement,
51 React.HTMLAttributes<HTMLParagraphElement>
52>(({ className, ...props }, ref) => (
53 <div
54 ref={ref}
55 className={cn("text-sm font-base [&_p]:leading-relaxed", className)}
56 {...props}
57 />
58));
59AlertDescription.displayName = "AlertDescription";
60
61export { Alert, AlertDescription, AlertTitle };
62