import * as React from 'react' import { theme } from '@latitude-data/client' type Props = React.HTMLAttributes & theme.ui.card.CardProps & { action?: (element: HTMLDivElement) => { destroy: () => void } } const CardHeader = React.forwardRef( ({ className, type, ...props }, ref) => (
), ) CardHeader.displayName = 'CardHeader' export default CardHeader