@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 640 B
JavaScript
export class SvgDocumentLock 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="M8 16H0V0h8v4h4v2a3.003 3.003 0 00-3 3v1H8v6zM9 0v3h3zm6 11V9a2.006 2.006 0 00-2-2h-1a2.006 2.006 0 00-2 2v2H9v5h7v-5zm-2.15 2.26L13.1 15h-1.2l.25-1.74a.7.7 0 01-.35-.56.7.7 0 011.4 0 .623.623 0 01-.35.56zM14 11h-3V9a1.001 1.001 0 011-1h1a1.001 1.001 0 011 1z"/></svg>`;
}
}
customElements.define('svg-document-lock', SvgDocumentLock);
export default SvgDocumentLock;