import { h } from 'preact'; export default function Box({ children, className = '', hover = false, href, ...props }) { const Element = href ? 'a' : 'div'; return ( {children} ); }