@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 833 B
JavaScript
export class SvgEyedropperDrop 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.383.258a1.518 1.518 0 00-1.94.215l-1.497 1.5-.518-.518a.733.733 0 10-1.036 1.036l.518.519-4.788 4.792a1.81 1.81 0 00-.388.578l-.677 1.61a.728.728 0 00.156.797.726.726 0 00.795.156l1.609-.678a1.808 1.808 0 00.577-.389l4.787-4.792.518.518a.733.733 0 001.036-1.037l-.518-.518 1.554-1.556a1.468 1.468 0 00-.188-2.233zM7.44 9.379l-1.42.6.598-1.423 4.809-4.814.822.823zM6 14.8a1.2 1.2 0 01-2.4 0A11.634 11.634 0 014.8 12 11.634 11.634 0 016 14.8z"/></svg>`;
}
}
customElements.define('svg-eyedropper-drop', SvgEyedropperDrop);
export default SvgEyedropperDrop;