@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 431 B
JavaScript
export class SvgAlignRight 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="M14 0h-1v16h1zm-2 9H1v4h11zm0-6H5v4h7z" fill-rule="evenodd"/></svg>`;
}
}
customElements.define('svg-align-right', SvgAlignRight);
export default SvgAlignRight;