import { clsx } from "clsx"; import { HTMLAttributes } from "react"; interface CardProps extends HTMLAttributes { padding?: boolean; } export function Card({ className, padding = true, children, ...props }: CardProps) { return (
{children}
); } export function CardHeader({ className, children, ...props }: HTMLAttributes) { return (
{children}
); } export function CardTitle({ className, children, ...props }: HTMLAttributes) { return (

{children}

); }