UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 746 B
export class SvgProperties 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="M10 .002a1.533 1.533 0 011.66 1.394q.005.053.006.106a2.183 2.183 0 01-2.166 2 1.567 1.567 0 01-1.667-1.667A2.05 2.05 0 0110 .002zM6.667 16c-.833 0-1.5-.5-.833-2.833l1-4c.166-.666.166-.832 0-.832a6.037 6.037 0 00-2.167.833l-.333-.833a10.832 10.832 0 015.5-2.667c.832 0 1 1 .5 2.666l-1.168 4.333c-.166.833-.166 1 .167 1a3.333 3.333 0 001.833-1l.5.667a9.615 9.615 0 01-5 2.666z"/></svg>`; } } customElements.define('svg-properties', SvgProperties); export default SvgProperties;