@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 837 B
JavaScript
export class SvgAutomatic 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="M11.38 4.654A3.343 3.343 0 009.599 4L.036 15.03c-.103.102.023.395.282.653A.956.956 0 00.87 16a.141.141 0 00.103-.036L12 6.394a3.08 3.08 0 00-.62-1.74zM6.788 9.593a1.995 1.995 0 01-.38-.386l3.584-4.133a1.652 1.652 0 01.68.288 1.468 1.468 0 01.263.631zm5.828-7.977L11 2.5l1.616.884L13.5 5l.884-1.616L16 2.5l-1.616-.884L13.5 0zM13 7.5l-.414 1.414L14 8.5l1.414.414L15 7.5l.414-1.414L14 6.5l-1.414-.414zM7.303 1.223l-.68.872 1.1.102.872.68.102-1.1.68-.872-1.1-.102-.872-.68z"/></svg>`;
}
}
customElements.define('svg-automatic', SvgAutomatic);
export default SvgAutomatic;