UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 1.14 kB
export class SvgApple 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="M14.387 12.469a8.675 8.675 0 01-.851 1.546 7.84 7.84 0 01-1.096 1.34 2.118 2.118 0 01-1.41.627 3.508 3.508 0 01-1.3-.314 3.701 3.701 0 00-1.402-.313 3.827 3.827 0 00-1.44.313 3.844 3.844 0 01-1.245.33 1.99 1.99 0 01-1.441-.643 8.203 8.203 0 01-1.147-1.387 9.617 9.617 0 01-1.212-2.435 8.993 8.993 0 01-.51-2.901 5.343 5.343 0 01.689-2.772 4.06 4.06 0 011.441-1.474 3.848 3.848 0 011.95-.556 4.56 4.56 0 011.507.355 4.798 4.798 0 001.196.355 7.065 7.065 0 001.326-.419 4.34 4.34 0 011.802-.323 3.815 3.815 0 012.997 1.595 3.377 3.377 0 00-1.768 3.062A3.391 3.391 0 0013.571 11a3.598 3.598 0 001.096.727q-.132.386-.28.742zM11.333.32a3.436 3.436 0 01-.866 2.239 2.939 2.939 0 01-2.45 1.222A2.587 2.587 0 018 3.478 3.638 3.638 0 0110.036.367 3.31 3.31 0 0111.316 0a2.867 2.867 0 01.017.32z"/></svg>`; } } customElements.define('svg-apple', SvgApple); export default SvgApple;