import { $, html } from "sigpro"; $.component( "c-card", (props, host) => { return html`
${() => props.img() ? html`
${() => props.alt() ??
` : null}

${host.slot("title")}

${host.slot("body")}
${host.slot("actions")}
`; }, ["img", "alt", "ui"], );