import type { PropsWithChildren } from 'react'; import { cls } from '../../utils/cls'; interface CardProps extends PropsWithChildren { className?: string; } export const Card = ({ className = '', children }: CardProps) => (
{children}
); export const CardHeader = ({ children }: PropsWithChildren) => (
{children}
); export const CardContent = ({ children }: PropsWithChildren) => (
{children}
);