@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 522 B
JavaScript
export class SvgCheckboxSelect 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="M1.994 0v1h13v13h1L16.006.01 1.994 0zm12 16h-14V2h14zm-13-1h12V3h-12zm4.988-5.187L4.1 7.958l-1.116 1.1 3 2.955 4.999-4.925-1.116-1.1z"/></svg>`;
}
}
customElements.define('svg-checkbox-select', SvgCheckboxSelect);
export default SvgCheckboxSelect;