@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 457 B
JavaScript
export class SvgRecords 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="M1 15h14v-4H1zm5-3h1v1h2v-1h1v2H6zm-5-2h14V6H1zm5-3h1v1h2V7h1v2H6zM1 1v4h14V1zm9 3H6V2h1v1h2V2h1z"/></svg>`;
}
}
customElements.define('svg-records', SvgRecords);
export default SvgRecords;