@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 421 B
JavaScript
export class SvgArchive 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="M11 7v2H5V7H0v7h16V7zM6 7h4v1H6m5-8v2H5V0H0v6h16V0zM6 0h4v1H6"/></svg>`;
}
}
customElements.define('svg-archive', SvgArchive);
export default SvgArchive;