Uecko_ERP/packages/shadcn-ui/src/components/card.tsx

104 lines
2.6 KiB
TypeScript
Raw Normal View History

2025-10-21 09:30:45 +00:00
import * as React from "react"
2025-05-05 17:11:44 +00:00
2025-10-21 09:30:45 +00:00
import { cn } from "@repo/shadcn-ui/lib/utils"
2025-05-05 17:11:44 +00:00
2026-03-17 17:49:54 +00:00
function Card({
className,
size = "default",
...props
}: React.ComponentProps<"div"> & { size?: "default" | "sm" }) {
2025-05-05 17:11:44 +00:00
return (
<div
2025-10-21 09:30:45 +00:00
data-slot="card"
2026-03-17 17:49:54 +00:00
data-size={size}
2025-05-05 17:11:44 +00:00
className={cn(
2026-04-12 10:07:54 +00:00
"group/card flex flex-col gap-6 overflow-hidden rounded-xl bg-card py-6 text-sm text-card-foreground shadow-xs ring-1 ring-foreground/10 has-[>img:first-child]:pt-0 data-[size=sm]:gap-4 data-[size=sm]:py-4 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl",
2025-05-05 17:11:44 +00:00
className
)}
{...props}
/>
2025-10-21 09:30:45 +00:00
)
2025-05-05 17:11:44 +00:00
}
function CardHeader({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
2025-10-21 09:30:45 +00:00
data-slot="card-header"
2025-05-05 17:11:44 +00:00
className={cn(
2026-04-12 10:07:54 +00:00
"group/card-header @container/card-header grid auto-rows-min items-start gap-1 rounded-t-xl px-6 group-data-[size=sm]/card:px-4 has-data-[slot=card-action]:grid-cols-[1fr_auto] has-data-[slot=card-description]:grid-rows-[auto_auto] [.border-b]:pb-6 group-data-[size=sm]/card:[.border-b]:pb-4",
2025-05-05 17:11:44 +00:00
className
)}
{...props}
/>
2025-10-21 09:30:45 +00:00
)
2025-05-05 17:11:44 +00:00
}
function CardTitle({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
2025-10-21 09:30:45 +00:00
data-slot="card-title"
2026-03-17 17:49:54 +00:00
className={cn(
2026-04-12 10:07:54 +00:00
"text-base leading-normal font-medium group-data-[size=sm]/card:text-sm",
2026-03-17 17:49:54 +00:00
className
)}
2025-05-05 17:11:44 +00:00
{...props}
/>
2025-10-21 09:30:45 +00:00
)
2025-05-05 17:11:44 +00:00
}
function CardDescription({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
2025-10-21 09:30:45 +00:00
data-slot="card-description"
2026-03-17 17:49:54 +00:00
className={cn("text-sm text-muted-foreground", className)}
2025-05-05 17:11:44 +00:00
{...props}
/>
2025-10-21 09:30:45 +00:00
)
2025-05-05 17:11:44 +00:00
}
function CardAction({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
2025-10-21 09:30:45 +00:00
data-slot="card-action"
className={cn(
"col-start-2 row-span-2 row-start-1 self-start justify-self-end",
className
)}
2025-05-05 17:11:44 +00:00
{...props}
/>
2025-10-21 09:30:45 +00:00
)
2025-05-05 17:11:44 +00:00
}
function CardContent({ className, ...props }: React.ComponentProps<"div">) {
2025-10-21 09:30:45 +00:00
return (
<div
data-slot="card-content"
2026-04-12 10:07:54 +00:00
className={cn("px-6 group-data-[size=sm]/card:px-4", className)}
2025-10-21 09:30:45 +00:00
{...props}
/>
)
2025-05-05 17:11:44 +00:00
}
function CardFooter({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
2025-10-21 09:30:45 +00:00
data-slot="card-footer"
2026-03-17 17:49:54 +00:00
className={cn(
2026-04-12 10:07:54 +00:00
"flex items-center rounded-b-xl px-6 group-data-[size=sm]/card:px-4 [.border-t]:pt-6 group-data-[size=sm]/card:[.border-t]:pt-4",
2026-03-17 17:49:54 +00:00
className
)}
2025-05-05 17:11:44 +00:00
{...props}
/>
2025-10-21 09:30:45 +00:00
)
2025-05-05 17:11:44 +00:00
}
2025-10-21 09:30:45 +00:00
export {
Card,
CardHeader,
CardFooter,
CardTitle,
CardAction,
CardDescription,
CardContent,
}