@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 574 B
JavaScript
export class SvgStatusRejectedHollow 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="M2.5 9.98h11v-4h-11v4Zm1-3h9v2h-9v-2ZM11.314 0H4.686L0 4.686v6.628L4.686 16h6.628L16 11.314V4.686L11.314 0ZM15 10.9 10.9 15H5.1L1 10.9V5.1L5.1 1h5.8L15 5.1v5.8Z"/></svg>`;
}
}
customElements.define('svg-status-rejected-hollow', SvgStatusRejectedHollow);
export default SvgStatusRejectedHollow;