UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 511 B
export class SvgDistributeCenterVertical 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="M16 4v1h-5v2H5V5H0V4h5V2h6v2zm-3 5H3v2H0v1h3v2h10v-2h3v-1h-3z" fill-rule="evenodd"/></svg>`; } } customElements.define('svg-distribute-center-vertical', SvgDistributeCenterVertical); export default SvgDistributeCenterVertical;