@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 413 B
JavaScript
export class SvgCrop 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="M2 2V0h2v12h12v2h-2v2h-2v-2H2V4H0V2z"/><path d="M14 11V2H5v2h7v7z"/></svg>`;
}
}
customElements.define('svg-crop', SvgCrop);
export default SvgCrop;