Files
winninghunter/src/components/ui/card.tsx
T
2026-07-07 20:40:43 +03:00

4 lines
226 B
TypeScript

export function Card({ className = "", children }: { className?: string; children: React.ReactNode }) {
return <div className={`rounded-3xl border border-slate-200 bg-white p-5 shadow-soft ${className}`}>{children}</div>;
}