import { ComponentPropsWithoutRef, forwardRef } from 'react' import { clsx } from 'clsx' import s from './card.module.scss' export type CardProps = {} & ComponentPropsWithoutRef<'div'> export const Card = forwardRef(({ className, ...restProps }, ref) => { const classNames = { root: clsx(s.root, className), } return
})