This commit is contained in:
7
src/components/ui/card.tsx
Normal file
7
src/components/ui/card.tsx
Normal file
@ -0,0 +1,7 @@
|
||||
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>;
|
||||
}
|
Reference in New Issue
Block a user