mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
62 lines
1.4 KiB
JavaScript
62 lines
1.4 KiB
JavaScript
import * as React from "react"
|
|
import { cva } from "class-variance-authority";
|
|
|
|
import { cn } from "@/lib/utils"
|
|
|
|
const alertVariants = cva(
|
|
"relative grid w-full gap-1 rounded-md border px-4 py-3 text-sm shadow-sm has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr] has-[>svg]:gap-x-3 [&>svg]:size-4 [&>svg]:translate-y-0.5",
|
|
{
|
|
variants: {
|
|
variant: {
|
|
default: "bg-card text-card-foreground",
|
|
destructive:
|
|
"border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive",
|
|
warning:
|
|
"border-chart-5/45 bg-chart-5/10 text-foreground [&>svg]:text-chart-5",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
variant: "default",
|
|
},
|
|
}
|
|
)
|
|
|
|
function Alert({
|
|
className,
|
|
variant,
|
|
...props
|
|
}) {
|
|
return (
|
|
<div
|
|
data-slot="alert"
|
|
role="alert"
|
|
className={cn(alertVariants({ variant }), className)}
|
|
{...props} />
|
|
);
|
|
}
|
|
|
|
function AlertTitle({
|
|
className,
|
|
...props
|
|
}) {
|
|
return (
|
|
<div
|
|
data-slot="alert-title"
|
|
className={cn("col-start-2 line-clamp-1 min-h-4 font-medium tracking-tight", className)}
|
|
{...props} />
|
|
);
|
|
}
|
|
|
|
function AlertDescription({
|
|
className,
|
|
...props
|
|
}) {
|
|
return (
|
|
<div
|
|
data-slot="alert-description"
|
|
className={cn("col-start-2 grid justify-items-start gap-1 text-muted-foreground text-sm [&_p]:leading-relaxed", className)}
|
|
{...props} />
|
|
);
|
|
}
|
|
|
|
export { Alert, AlertTitle, AlertDescription }
|