UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 583 B
export class SvgLockUnlocked 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="M5 7V4.5A2.5 2.5 0 017.5 2h1A2.52 2.52 0 0111 4.51V5h2v-.29A4.71 4.71 0 008.29 0h-.57A4.74 4.74 0 003 4.72V7H2v9h12V7zm3.8 7H7.3l.2-2.2A1 1 0 017 11a1.08 1.08 0 011-1 1.08 1.08 0 011 1 .89.89 0 01-.5.8z"/></svg>`; } } customElements.define('svg-lock-unlocked', SvgLockUnlocked); export default SvgLockUnlocked;