MCPcopy
hub / github.com/tinyauthapp/tinyauth / Card

Function Card

frontend/src/components/ui/card.tsx:5–16  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<"div">)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected