export function WidgetCard({ title, subtitle, actions, variant, children, className = '', footer, }) { return (
{(title || actions) && (
{title &&

{title}

} {subtitle &&

{subtitle}

}
{actions}
)}
{children}
{footer && }
) }