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