import { h } from 'preact'; import Button from './Button'; import Heading from './Heading'; export default function Box({ buttons = [], className = '', content, header, href, icons, media = null, subheader, supportingText, ...props }) { const Element = href ? 'a' : 'div'; return (