UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 456 B
export class SvgFitToView extends HTMLElement { constructor() { super(); } connectedCallback() { this.innerHTML = `<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" width="1rem" height="1rem" fill="var(--iui-color-icon-muted, currentColor)"><path d="M15 1v14H1V1zm1-1H0v16h16zM5.4 2H2v3.4zM14 5.4V2h-3.4zM10.6 14H14v-3.4zM2 10.6V14h3.4z"/></svg>`; } } customElements.define('svg-fit-to-view', SvgFitToView); export default SvgFitToView;