import clsx from 'clsx' import { type HTMLProps } from 'react' type Properties = HTMLProps export default function Card(properties: Properties) { return ( {properties.children} ) }