UNPKG

@itwin/itwinui-icons-elements

Version:

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

8 lines 817 B
export class SvgUserRestricted 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="M7 9.929V13H.712c-.244 0-.488-.08-.651-.316-.081-.159-.081-.396 0-.633l1.465-3.243a.627.627 0 0 1 .326-.317L4.13 7.305h.163c.65.474 1.396.813 2.21.813.814 0 1.534-.339 2.185-.813h.163l.51.263L7 9.928Zm-.509-3.017c1.628 0 2.93-1.564 2.93-3.456C9.421.823 8.12 0 6.491 0c-1.628 0-2.93.823-2.93 3.456 0 1.892 1.302 3.456 2.93 3.456ZM14.5 11.24h-5v1.5h5v-1.5Zm1.5-.897v3.314L13.657 16h-3.314L8 13.657v-3.314L10.343 8h3.314L16 10.343Z"/></svg>`; } } customElements.define('svg-user-restricted', SvgUserRestricted); export default SvgUserRestricted;