UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 514 B
export class SvgCameraAnimation 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="M16 3l-4 2v-.5A1.538 1.538 0 0010.5 3h-9A1.538 1.538 0 000 4.5v7A1.538 1.538 0 001.5 13h9a1.538 1.538 0 001.5-1.5V11l4 2z"/></svg>`; } } customElements.define('svg-camera-animation', SvgCameraAnimation); export default SvgCameraAnimation;