import clsx from 'clsx'; import { PropsWithChildren } from 'react'; export interface Props { className?: string; } export function Card({ className, children }: PropsWithChildren) { return (
{children}
); }