@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 452 B
JavaScript
export class SvgDistributeLeft 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="M3 3h4v10H3v3H2V0h1zm11 2h-4V0H9v16h1v-5h4z" fill-rule="evenodd"/></svg>`;
}
}
customElements.define('svg-distribute-left', SvgDistributeLeft);
export default SvgDistributeLeft;