MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / AlertDescription

Function AlertDescription

src/components/ui/alert.tsx:50–64  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<"div">)

Source from the content-addressed store, hash-verified

48}
49
50function AlertDescription({
51 className,
52 ...props
53}: React.ComponentProps<"div">) {
54 return (
55 <div
56 data-slot="alert-description"
57 className={cn(
58 "text-muted-foreground col-start-2 grid justify-items-start gap-1 text-sm [&_p]:leading-relaxed",
59 className
60 )}
61 {...props}
62 />
63 )
64}
65
66export { Alert, AlertTitle, AlertDescription }

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected