UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 641 B
export class SvgFontItalic 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="M6.6.4l.1-.4h7.8l-.2.4a2.544 2.544 0 00-1.6.5 4.065 4.065 0 00-1 2L8.8 13.1a6.356 6.356 0 00-.3 1.5.908.908 0 00.3.7 2.984 2.984 0 001.6.3l-.1.4H2.4l.1-.4a2.457 2.457 0 001.7-.5 4.065 4.065 0 001-2l3-10.2a5.017 5.017 0 00.3-1.4.908.908 0 00-.3-.7A4.016 4.016 0 006.6.4"/></svg>`; } } customElements.define('svg-font-italic', SvgFontItalic); export default SvgFontItalic;