@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 683 B
JavaScript
export class SvgReplace 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="M0 0h7v7H0zm16 16H9V9h7zm-6-1h5v-5h-5zM3.152 8.927l-.743-.743L.641 9.952l1.026.035a3.87 3.87 0 001.096 3.5 4 4 0 005.303.354l-.707-.707a3.026 3.026 0 01-4.703-3.076l1.662.035zm10.093-6.932a4 4 0 00-5.268-.318l.707.707a3 3 0 013.854.318 2.86 2.86 0 01.777 2.828h-1.484l1.767 1.768 1.768-1.768h-.99a4.16 4.16 0 00-1.131-3.535"/></svg>`;
}
}
customElements.define('svg-replace', SvgReplace);
export default SvgReplace;