This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
2024-10-08 15:32:02 +01:00

11 lines
289 B
TypeScript

import clsx, { ClassValue } from "clsx";
type Props = {
children: React.ReactNode;
className?: ClassValue;
};
export default function Card({ children, className }: Props) {
return <div className={clsx("flex flex-col bg-secondary/90 p-3 rounded-md", className)}>{children}</div>;
}