Frontend/src/components/ui/card.tsx

8 lines
203 B
TypeScript
Raw Normal View History

2024-04-15 08:09:45 +00:00
export function Card({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return <div className="bg-secondary rounded-lg p-4 min-w-[600px] max-w-full flex flex-row gap-2">{children}</div>;
}