@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 443 B
JavaScript
export class SvgPolygon extends HTMLElement {
constructor() { super(); }
connectedCallback() {
this.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M7.7 2.027l6.364 7.954-3.766 4.519H1.501V6.289l6.2-4.263M8 0L0 5.5V16h11l5-6L8 .001"/></svg>`;
}
}
customElements.define('svg-polygon', SvgPolygon);
export default SvgPolygon;