MCPcopy
hub / github.com/stackryze/FreeDomains / Card

Function Card

src/components/ui/card.jsx:2–11  ·  view source on GitHub ↗
({ className, ...props })

Source from the content-addressed store, hash-verified

1import { cn } from "@/lib/utils";
2function Card({ className, ...props }) {
3 return <div
4 data-slot="card"
5 className={cn(
6 "bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm",
7 className
8 )}
9 {...props}
10 />;
11}
12function CardHeader({ className, ...props }) {
13 return <div
14 data-slot="card-header"

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected