import { $, html } from "sigpro"; $.component( "c-fab", (props, { emit }) => { const handleClick = (e, item) => { if (item.onclick) item.onclick(e); emit("select", item); if (document.activeElement instanceof HTMLElement) document.activeElement.blur(); }; return html` `; }, ["main-icon", "actions", "ui"], );