import type { HTMLAttributes } from 'react';
import { cn } from '@/lib/utils';
export function Card({ className, ...props }: HTMLAttributes) {
return (
);
}
export function CardHeader({
className,
...props
}: HTMLAttributes) {
return (
);
}
export function CardTitle({
className,
...props
}: HTMLAttributes) {
return (
);
}
export function CardDescription({
className,
...props
}: HTMLAttributes) {
return (
);
}
export function CardContent({
className,
...props
}: HTMLAttributes) {
return ;
}