haunted-heroicons
Version:
Heroicons for Haunted WebComponents
11 lines (8 loc) • 368 B
JavaScript
import { html, component } from "haunted";
import { iconStyle } from "haunted-heroicons/icon.esm";
const style = iconStyle("outline");
function XIcon() { return html`${style}<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path d="M6 18L18 6M6 6l12 12"/>
</svg>
`}
customElements.define("x-icon", component(XIcon));