UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 554 B
export class SvgDragHandle 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="M12 7a1 1 0 110-2 1 1 0 010 2zM9 6a1 1 0 10-2 0 1 1 0 002 0zM5 6a1 1 0 10-2 0 1 1 0 002 0zm7 5a1 1 0 110-2 1 1 0 010 2zm-3-1a1 1 0 10-2 0 1 1 0 002 0zm-4 0a1 1 0 10-2 0 1 1 0 002 0z"/></svg>`; } } customElements.define('svg-drag-handle', SvgDragHandle); export default SvgDragHandle;