UNPKG

haunted-heroicons

Version:
11 lines (8 loc) 553 B
import { html, component } from "haunted"; import { iconStyle } from "haunted-heroicons/icon.esm"; const style = iconStyle("outline"); function TranslateIcon() { return html`${style}<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5h12M9 3v2m1.048 9.5A18.022 18.022 0 016.412 9m6.088 9h7M11 21l5-10 5 10M12.751 5C11.783 10.77 8.07 15.61 3 18.129"/> </svg> `} customElements.define("translate-icon", component(TranslateIcon));