Preview
Switch between light and dark to inspect the embedded Storybook preview.
Installation
pnpm dlx shadcn@latest add https://ui.vllnt.ai/r/alert.jsonStorybook
Explore all variants, controls, and accessibility checks in the interactive Storybook playground.
View in Storybook2 stories available:
Code
import { cva, type VariantProps } from "class-variance-authority";
import { cn } from "../../lib/utils";
const alertVariants = cva(
"relative w-full rounded-lg border p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground",
{
defaultVariants: {
variant: "default",
},
variants: {
variant: {
default: "bg-background text-foreground",
destructive:
"border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive",
},
},
},
);
const Alert = ({
className,
ref,
variant,
...props
}: React.HTMLAttributes<HTMLDivElement> &
VariantProps<typeof alertVariants> & {
ref?: React.Ref<HTMLDivElement>;
}) => (
<div
className={cn(alertVariants({ variant }), className)}
ref={ref}
role="alert"
{...props}
/>
);
Alert.displayName = "Alert";
const AlertTitle = ({
children,
className,
ref,
...props
}: React.HTMLAttributes<HTMLHeadingElement> & {
ref?: React.Ref<HTMLParagraphElement>;
}) => (
<h5
className={cn("mb-1 font-medium leading-none tracking-tight", className)}
ref={ref}
{...props}
>
{children}
</h5>
);
AlertTitle.displayName = "AlertTitle";
const AlertDescription = ({
className,
ref,
...props
}: React.HTMLAttributes<HTMLParagraphElement> & {
ref?: React.Ref<HTMLParagraphElement>;
}) => (
<div
className={cn("text-sm [&_p]:leading-relaxed", className)}
ref={ref}
{...props}
/>
);
AlertDescription.displayName = "AlertDescription";
export { Alert, AlertDescription, AlertTitle, alertVariants };