UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 917 B
export class SvgPinHollow 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="M10.522 1.436l4.042 4.042a2.896 2.896 0 01-1.614.487c-.064 0-.125-.003-.185-.01l-.475-.05-.338.339-2.245 2.25-.391.392.125.54a3.79 3.79 0 01-.643 3.114l-2.221-2.218-.448-.446-.451-.453L3.46 7.202a3.798 3.798 0 013.114-.643l.54.125.392-.391 2.25-2.245.338-.337-.05-.475a1.766 1.766 0 01-.009-.186c0-.585.172-1.143.487-1.614M10.5 0a3.89 3.89 0 00-1.465 3.05c0 .1.005.195.015.29L6.8 5.585a4.797 4.797 0 00-4.77 1.6l2.94 2.945L0 15.095V16h.905l4.965-4.97 2.945 2.94a4.797 4.797 0 001.6-4.77l2.245-2.25c.095.01.19.015.29.015A3.89 3.89 0 0016 5.5L10.5 0z"/></svg>`; } } customElements.define('svg-pin-hollow', SvgPinHollow); export default SvgPinHollow;