UNPKG

@itwin/itwinui-icons-elements

Version:

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

9 lines 940 B
export class SvgCameraRetake 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.7 8.6c0 2-1.7 3.7-3.7 3.7v-.8c1.6 0 2.9-1.3 2.9-2.9C10.9 7 9.6 5.7 8 5.7 6.4 5.7 5.1 7 5.1 8.6h-.8c0-2 1.7-3.7 3.7-3.7s3.7 1.7 3.7 3.7zm2.2-4.8h-2.7l-.4-1.1c-.3-.5-.8-.8-1.3-.8H6.3c-.5 0-1 .3-1.3.8l-.4 1.1H2.1c-.7 0-1.2.6-1.2 1.3v7.6c0 .7.5 1.3 1.2 1.3h2.5l-1.1.6c-.1.1-.2.3-.1.4.1.1.3.2.4.1L6 14c.1-.1.1-.2.1-.3s0-.2-.1-.3l-2.3-1.3c-.1-.1-.3 0-.4.1-.1.1 0 .3.1.4l1.2.7H2.1c-.3 0-.5-.3-.5-.6V5.1c0-.3.2-.6.5-.6h3l.5-1.4c.1-.2.3-.4.7-.4h3.3c.3 0 .5.1.7.4l.6 1.6h3.2c.3 0 .5.3.5.6v7.6c0 .3-.2.6-.5.6H7.5v.8h6.4c.7 0 1.2-.6 1.2-1.3V5.1c0-.7-.5-1.3-1.2-1.3z"/></svg>`; } } customElements.define('svg-camera-retake', SvgCameraRetake); export default SvgCameraRetake;