cleanup
All checks were successful
deploy / deploy (push) Successful in 56s

This commit is contained in:
Lee
2023-10-20 18:23:49 +01:00
parent fbcf5f3651
commit 0f27952235
4 changed files with 48 additions and 18 deletions

26
src/components/Card.tsx Normal file
View File

@ -0,0 +1,26 @@
import clsx from "clsx";
type CardProps = {
className?: string;
innerClassName?: string;
children: React.ReactNode;
};
export default function Card({
className,
innerClassName,
children,
}: CardProps) {
return (
<div className={className}>
<div
className={clsx(
"rounded-md bg-gray-800 p-3 opacity-90",
innerClassName,
)}
>
{children}
</div>
</div>
);
}