import React from "react"; /** * Surface container. Optional header (title + actions) and body padding. */ export function Card({ title, subtitle, actions = null, children, padded = true, inset = false, style = {} }) { return (
{(title || actions) && (
{title &&
{title}
} {subtitle &&
{subtitle}
}
{actions &&
{actions}
}
)}
{children}
); }