import { PropsWithChildren } from 'react'; import { Card as CardPrimitive } from '../primitives/Card'; export interface Props { className?: string; } /** @deprecated Use Card.Container from @@/primitives/Card with variant="filled" */ export function Card({ className, children }: PropsWithChildren) { return ( {children} ); }