@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 419 B
JavaScript
export class SvgRoad 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="M13 0h1v15h-1M3 0v15h9V0zm5 14H7v-3h1zm0-5H7V6h1zm0-5H7V1h1zM1 0h1v15H1"/></svg>`;
}
}
customElements.define('svg-road', SvgRoad);
export default SvgRoad;