UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 485 B
export class SvgAlignCenterHorizontal 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 fill-rule="evenodd" d="M13 9H8V7h3V3H8V0H7v3H4v4h3v2H2v4h5v3h1v-3h5V9z"/></svg>`; } } customElements.define('svg-align-center-horizontal', SvgAlignCenterHorizontal); export default SvgAlignCenterHorizontal;