@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 517 B
JavaScript
export class SvgDistributeCenterHorizontal 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="M5 3h2v10H5v3H4v-3H2V3h2V0h1zm9 2h-2V0h-1v5H9v6h2v5h1v-5h2z" fill-rule="evenodd"/></svg>`;
}
}
customElements.define('svg-distribute-center-horizontal', SvgDistributeCenterHorizontal);
export default SvgDistributeCenterHorizontal;