Project structure changes ad new files added in dashboard folders
This commit is contained in:
9
components/common/cardWrapper.tsx
Normal file
9
components/common/cardWrapper.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
export function Card({ children, className = "" }:
|
||||
{ children: React.ReactNode; className?: string }) {
|
||||
return (
|
||||
<div className={`bg-[#0a1526] border border-[#162942] rounded-xl p-3
|
||||
shadow-xl flex flex-col justify-between ${className}`}>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user