@itwin/itwinui-icons-elements
Version:
Exports svgs from @itwin/itwinui-icons as custom elements
8 lines • 1.06 kB
JavaScript
export class SvgNotificationSettings 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="M3.93 11a1.57 1.57 0 003.14 0zm3.41-.79H0v-.78l1.57-1.57V5.5a4 4 0 012.91-4.16v-.4A1 1 0 015.5 0a1.09 1.09 0 011 .94v.4A4 4 0 019.43 5.5v2.23a5.08 5.08 0 00-2.09 2.48zM16 12.713v-1.428l-1.101-.222a3.035 3.035 0 00-.188-.451l.62-.935-1.008-1.01-.933.62a3.02 3.02 0 00-.456-.19l-.22-1.094h-1.427l-.22 1.094a3.018 3.018 0 00-.46.192L9.68 8.67l-1.01 1.01.62.932a3.026 3.026 0 00-.19.457l-1.094.22v1.428l1.1.222a3.024 3.024 0 00.19.452l-.622.934 1.01 1.01.94-.625a3.026 3.026 0 00.446.186L11.292 16h1.427l.223-1.107a3.025 3.025 0 00.444-.186l.94.625 1.01-1.01-.626-.94a3.03 3.03 0 00.187-.447zm-4 .807a1.523 1.523 0 111.523-1.524A1.523 1.523 0 0112 13.52z"/></svg>`;
}
}
customElements.define('svg-notification-settings', SvgNotificationSettings);
export default SvgNotificationSettings;