@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 679 B
JavaScript
export class SvgFastForward 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="M1.778 4a.76.76 0 00-.39.108A.804.804 0 001 4.8v6.4a.804.804 0 00.387.692.76.76 0 00.777.003l5.444-3.2a.811.811 0 000-1.39l-5.444-3.2A.76.76 0 001.778 4zm7 0a.76.76 0 00-.39.108A.804.804 0 008 4.8v6.4a.804.804 0 00.387.692.76.76 0 00.777.003l5.444-3.2a.811.811 0 000-1.39l-5.444-3.2A.76.76 0 008.778 4z"/></svg>`;
}
}
customElements.define('svg-fast-forward', SvgFastForward);
export default SvgFastForward;