mirror of
https://github.com/fosrl/pangolin.git
synced 2025-05-12 21:30:35 +01:00
73 lines
1.9 KiB
TypeScript
73 lines
1.9 KiB
TypeScript
import * as React from "react";
|
|
import { cva, type VariantProps } from "class-variance-authority";
|
|
|
|
import { cn } from "@app/lib/cn";
|
|
|
|
const alertVariants = cva(
|
|
"relative w-full rounded-lg p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground",
|
|
{
|
|
variants: {
|
|
variant: {
|
|
default: "bg-card border text-foreground",
|
|
neutral: "bg-card border text-foreground",
|
|
destructive:
|
|
"border-destructive/50 border bg-destructive/10 text-destructive dark:border-destructive [&>svg]:text-destructive",
|
|
success:
|
|
"border-green-500/50 border bg-green-500/10 text-green-500 dark:border-success [&>svg]:text-green-500",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
variant: "default",
|
|
},
|
|
},
|
|
);
|
|
|
|
const Alert = (
|
|
{
|
|
ref,
|
|
className,
|
|
variant,
|
|
...props
|
|
}
|
|
) => (<div
|
|
ref={ref}
|
|
role="alert"
|
|
className={cn(alertVariants({ variant }), className)}
|
|
{...props}
|
|
/>);
|
|
Alert.displayName = "Alert";
|
|
|
|
const AlertTitle = (
|
|
{
|
|
ref,
|
|
className,
|
|
...props
|
|
}: React.HTMLAttributes<HTMLHeadingElement> & {
|
|
ref: React.RefObject<HTMLParagraphElement>;
|
|
}
|
|
) => (<h5
|
|
ref={ref}
|
|
className={cn(
|
|
"mb-1 font-medium leading-none tracking-tight",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>);
|
|
AlertTitle.displayName = "AlertTitle";
|
|
|
|
const AlertDescription = (
|
|
{
|
|
ref,
|
|
className,
|
|
...props
|
|
}: React.HTMLAttributes<HTMLParagraphElement> & {
|
|
ref: React.RefObject<HTMLParagraphElement>;
|
|
}
|
|
) => (<div
|
|
ref={ref}
|
|
className={cn("text-sm [&_p]:leading-relaxed", className)}
|
|
{...props}
|
|
/>);
|
|
AlertDescription.displayName = "AlertDescription";
|
|
|
|
export { Alert, AlertTitle, AlertDescription };
|