UNPKG

@itwin/itwinui-icons-elements

Version:

Exports svgs from @itwin/itwinui-icons as custom elements

8 lines 523 B
export class SvgImportantVery extends HTMLElement { constructor() { super(); } connectedCallback() { this.innerHTML = `<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M2 0h4v3.645l-.773 7.324H2.754L2 3.645zm.138 12.082h3.734V16H2.138zM10 0h4v3.645l-.773 7.324h-2.473L10 3.645zm.138 12.082h3.734V16h-3.734z"/></svg>`; } } customElements.define('svg-important-very', SvgImportantVery); export default SvgImportantVery;