@norwegian/core-components 7.17.2 → 7.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/assets/icons/icon-spenn--light.svg +7 -12
  2. package/assets/icons/icon-spenn--secondary.svg +7 -12
  3. package/assets/icons/icon-spenn.svg +7 -8
  4. package/assets/icons/medium/spenn-extra.svg +11 -0
  5. package/assets/icons/medium/spenn-logo--light.svg +4 -3
  6. package/assets/icons/medium/spenn-logo--secondary.svg +5 -0
  7. package/assets/icons/medium/spenn-logo.svg +4 -3
  8. package/assets/icons/small/spenn-extra.svg +11 -0
  9. package/assets/icons/small/spenn-logo--light.svg +3 -2
  10. package/assets/icons/small/spenn-logo--secondary.svg +5 -0
  11. package/assets/icons/small/spenn-logo.svg +3 -2
  12. package/esm2022/lib/components/checkbox/checkbox.module.mjs +1 -1
  13. package/esm2022/lib/components/icon/icon.component.mjs +2 -2
  14. package/esm2022/lib/components/icon-list/models/icon-list.model.mjs +1 -1
  15. package/esm2022/lib/components/page-header/models/wallet.model.mjs +1 -1
  16. package/esm2022/lib/components/page-header/page-header.component.mjs +4 -4
  17. package/esm2022/lib/components/page-header/wallet/wallet.component.mjs +4 -4
  18. package/esm2022/lib/components/tooltip/content/content.component.mjs +20 -0
  19. package/esm2022/lib/components/tooltip/index.mjs +2 -1
  20. package/esm2022/lib/components/tooltip/tooltip.component.mjs +35 -25
  21. package/esm2022/lib/components/tooltip/tooltip.module.mjs +6 -5
  22. package/fesm2022/norwegian-core-components.mjs +60 -35
  23. package/fesm2022/norwegian-core-components.mjs.map +1 -1
  24. package/lib/components/tooltip/content/content.component.d.ts +7 -0
  25. package/lib/components/tooltip/index.d.ts +1 -0
  26. package/lib/components/tooltip/tooltip.component.d.ts +6 -3
  27. package/lib/components/tooltip/tooltip.module.d.ts +5 -4
  28. package/package.json +1 -1
  29. package/styles/2__generic/_fonts.scss +1 -1
  30. package/styles/_helpers.scss +1 -1
  31. package/styles/_index.scss +1 -1
  32. package/assets/icons/medium/spenn-extra-six--light.svg +0 -12
  33. package/assets/icons/medium/spenn-extra-six.svg +0 -12
  34. package/assets/icons/medium/spenn-extra-two--light.svg +0 -11
  35. package/assets/icons/medium/spenn-extra-two.svg +0 -11
  36. package/assets/icons/small/spenn-extra-six--light.svg +0 -12
  37. package/assets/icons/small/spenn-extra-six.svg +0 -12
  38. package/assets/icons/small/spenn-extra-two--light.svg +0 -11
  39. package/assets/icons/small/spenn-extra-two.svg +0 -11
@@ -0,0 +1,7 @@
1
+ import { NasComponentBase } from '../../../core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TooltipContentComponent extends NasComponentBase {
4
+ constructor();
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TooltipContentComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<TooltipContentComponent, "nas-tooltip-content", never, {}, {}, never, ["*"], false, never>;
7
+ }
@@ -1,2 +1,3 @@
1
1
  export * from './tooltip.component';
2
+ export * from './content/content.component';
2
3
  export * from './tooltip.module';
@@ -6,6 +6,7 @@ import { AfterViewInit, ElementRef, OnInit } from '@angular/core';
6
6
  import { ClassModel } from '../../core/models/class.model';
7
7
  import { NasComponentBase } from '../../core';
8
8
  import { DeviceHelper } from '../../core/services/device/device-helper.service';
9
+ import { TooltipContentComponent } from './content/content.component';
9
10
  import * as i0 from "@angular/core";
10
11
  /**
11
12
  * @description
@@ -16,6 +17,7 @@ export declare class TooltipComponent extends NasComponentBase implements OnInit
16
17
  container: ElementRef;
17
18
  tooltip: ElementRef;
18
19
  content: ElementRef;
20
+ tooltipContent: TooltipContentComponent;
19
21
  opacityTimer: any;
20
22
  /**
21
23
  * @property Input
@@ -41,17 +43,18 @@ export declare class TooltipComponent extends NasComponentBase implements OnInit
41
43
  * Sets right styling for tool tip, auto positioning on screen size will be ignored
42
44
  */
43
45
  right: boolean;
46
+ get hasCustomToolTipContent(): boolean;
44
47
  private hostListenerIgnored;
45
48
  private innerWidth;
46
49
  constructor(deviceHelper: DeviceHelper);
47
- onMouseEnter(): void;
48
- onMouseLeave(): void;
49
50
  onScroll(): void;
50
51
  onClickOutside(event: MouseEvent): void;
51
52
  onResize(): void;
52
53
  ngOnInit(): void;
53
54
  ngAfterViewInit(): void;
54
55
  getClasses(element?: string, modifiers?: any): Array<ClassModel>;
56
+ onHoverTooltip(): void;
57
+ onHideTooltip(): void;
55
58
  onClickClose(): void;
56
59
  onClickOpenMobileView(): void;
57
60
  private adjustTooltipPosition;
@@ -59,5 +62,5 @@ export declare class TooltipComponent extends NasComponentBase implements OnInit
59
62
  private hideToolTip;
60
63
  private setToolTipOpacity;
61
64
  static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
62
- static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "nas-tooltip", never, { "text": { "alias": "text"; "required": false; }; "enabled": { "alias": "enabled"; "required": false; }; "left": { "alias": "left"; "required": false; }; "right": { "alias": "right"; "required": false; }; }, {}, never, ["*"], false, never>;
65
+ static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "nas-tooltip", never, { "text": { "alias": "text"; "required": false; }; "enabled": { "alias": "enabled"; "required": false; }; "left": { "alias": "left"; "required": false; }; "right": { "alias": "right"; "required": false; }; }, {}, ["tooltipContent"], ["nas-tooltip-content", ":not(nas-tooltip-content)"], false, never>;
63
66
  }
@@ -1,10 +1,11 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./tooltip.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "../../core/directives/nas-class/nas-class.module";
5
- import * as i4 from "../icon/icon.module";
3
+ import * as i2 from "./content/content.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "../../core/directives/nas-class/nas-class.module";
6
+ import * as i5 from "../icon/icon.module";
6
7
  export declare class TooltipModule {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<TooltipModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipModule, [typeof i1.TooltipComponent], [typeof i2.CommonModule, typeof i3.NasClassModule, typeof i4.IconModule], [typeof i1.TooltipComponent]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipModule, [typeof i1.TooltipComponent, typeof i2.TooltipContentComponent], [typeof i3.CommonModule, typeof i4.NasClassModule, typeof i5.IconModule], [typeof i1.TooltipComponent, typeof i2.TooltipContentComponent]>;
9
10
  static ɵinj: i0.ɵɵInjectorDeclaration<TooltipModule>;
10
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@norwegian/core-components",
3
- "version": "7.17.2",
3
+ "version": "7.18.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=16.0.0 < 22.0.0",
6
6
  "@angular/core": ">=16.0.0 < 22.0.0"
@@ -31,7 +31,7 @@ $value in $import-fonts {
31
31
  font-family: '#{nth($value, 1)}';
32
32
  font-style: nth($value, 4);
33
33
  font-weight: nth($value, 3);
34
- font-display: fallback;
34
+ font-display: swap;
35
35
  src: url('../../assets/fonts/#{nth($value, 2)}.woff2') format('woff2'),
36
36
  url('../../assets/fonts/#{nth($value, 2)}.woff') format('woff');
37
37
  }
@@ -1,4 +1,4 @@
1
1
  @import '1__settings/mixins';
2
2
  @import '1__settings/vars';
3
3
  @import '1__settings/type';
4
- @import '1__settings/colors';
4
+ @import '1__settings/colors';
@@ -12,4 +12,4 @@
12
12
  @import './3__base/form';
13
13
  @import './3__base/animations';
14
14
  @import './3__base/table';
15
- @import './3__base/fixes';
15
+ @import './3__base/fixes';
@@ -1,12 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_3256_142)">
3
- <path d="M24 0C10.7664 0 0 10.7664 0 24C0 37.2336 10.7664 48 24 48C37.2336 48 48 37.2336 48 24C48 10.7664 37.2336 0 24 0ZM24 46.0752C11.8272 46.0752 1.9248 36.1728 1.9248 24C1.9248 11.8272 11.8272 1.9248 24 1.9248C36.1728 1.9248 46.0752 11.8272 46.0752 24C46.0752 36.1728 36.1728 46.0752 24 46.0752Z" fill="white"/>
4
- <path d="M17.2992 24.3888C16.6608 24.3888 16.1232 24.5952 15.6768 25.0032C15.2304 25.4112 15.0096 26.0016 15.0096 26.7648C15.0096 27.1344 15.0672 27.4608 15.192 27.7488C15.3168 28.0368 15.48 28.2864 15.6912 28.4928C15.9024 28.6992 16.1472 28.8576 16.4208 28.968C16.6944 29.0832 16.992 29.136 17.2992 29.136C17.9376 29.136 18.4752 28.92 18.9216 28.488C19.368 28.056 19.5888 27.48 19.5888 26.76C19.5888 25.9968 19.368 25.4112 18.9216 24.9984C18.4752 24.5904 17.9376 24.384 17.2992 24.384V24.3888Z" fill="white"/>
5
- <path d="M24 4.08C13.0464 4.08 4.08 12.9312 4.08 24C4.08 35.0688 13.0464 43.92 24 43.92C34.9536 43.92 43.92 35.0688 43.92 24C43.92 12.9312 34.9536 4.08 24 4.08ZM21.888 28.6848C21.6384 29.2704 21.2928 29.7792 20.8512 30.2112C20.4048 30.6432 19.8768 30.984 19.272 31.2288C18.6624 31.4784 18.0048 31.5984 17.2992 31.5984C16.5936 31.5984 15.9408 31.4784 15.336 31.2384C14.736 30.9984 14.2128 30.6624 13.7664 30.2304C13.32 29.7984 12.9696 29.2848 12.7152 28.6944C12.4608 28.0992 12.336 27.456 12.336 26.7648C12.336 26.3136 12.4032 25.8576 12.5376 25.3968C12.672 24.936 12.8448 24.5232 13.056 24.1584L17.3808 16.416H20.352L17.1264 21.9312H17.4672C18.144 21.9312 18.7776 22.0464 19.3632 22.2816C19.9488 22.5168 20.4576 22.8432 20.88 23.2656C21.3024 23.688 21.6384 24.1968 21.888 24.792C22.1376 25.3872 22.2576 26.0448 22.2576 26.7648C22.2576 27.4848 22.1328 28.0992 21.888 28.6848ZM30.2352 31.584C27.528 31.584 25.3296 29.4048 25.3296 26.7072H30.2352V31.584ZM32.6976 25.08H25.3344V20.2032H32.6976C34.0512 20.2032 35.1504 21.2976 35.1504 22.6416C35.1504 23.9856 34.0512 25.08 32.6976 25.08Z" fill="white"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_3256_142">
9
- <rect width="48" height="48" fill="white"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
@@ -1,12 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_3256_142)">
3
- <path d="M24 0C10.7664 0 0 10.7664 0 24C0 37.2336 10.7664 48 24 48C37.2336 48 48 37.2336 48 24C48 10.7664 37.2336 0 24 0ZM24 46.0752C11.8272 46.0752 1.9248 36.1728 1.9248 24C1.9248 11.8272 11.8272 1.9248 24 1.9248C36.1728 1.9248 46.0752 11.8272 46.0752 24C46.0752 36.1728 36.1728 46.0752 24 46.0752Z" fill="#15273F"/>
4
- <path d="M17.2992 24.3888C16.6608 24.3888 16.1232 24.5952 15.6768 25.0032C15.2304 25.4112 15.0096 26.0016 15.0096 26.7648C15.0096 27.1344 15.0672 27.4608 15.192 27.7488C15.3168 28.0368 15.48 28.2864 15.6912 28.4928C15.9024 28.6992 16.1472 28.8576 16.4208 28.968C16.6944 29.0832 16.992 29.136 17.2992 29.136C17.9376 29.136 18.4752 28.92 18.9216 28.488C19.368 28.056 19.5888 27.48 19.5888 26.76C19.5888 25.9968 19.368 25.4112 18.9216 24.9984C18.4752 24.5904 17.9376 24.384 17.2992 24.384V24.3888Z" fill="#15273F"/>
5
- <path d="M24 4.08C13.0464 4.08 4.08 12.9312 4.08 24C4.08 35.0688 13.0464 43.92 24 43.92C34.9536 43.92 43.92 35.0688 43.92 24C43.92 12.9312 34.9536 4.08 24 4.08ZM21.888 28.6848C21.6384 29.2704 21.2928 29.7792 20.8512 30.2112C20.4048 30.6432 19.8768 30.984 19.272 31.2288C18.6624 31.4784 18.0048 31.5984 17.2992 31.5984C16.5936 31.5984 15.9408 31.4784 15.336 31.2384C14.736 30.9984 14.2128 30.6624 13.7664 30.2304C13.32 29.7984 12.9696 29.2848 12.7152 28.6944C12.4608 28.0992 12.336 27.456 12.336 26.7648C12.336 26.3136 12.4032 25.8576 12.5376 25.3968C12.672 24.936 12.8448 24.5232 13.056 24.1584L17.3808 16.416H20.352L17.1264 21.9312H17.4672C18.144 21.9312 18.7776 22.0464 19.3632 22.2816C19.9488 22.5168 20.4576 22.8432 20.88 23.2656C21.3024 23.688 21.6384 24.1968 21.888 24.792C22.1376 25.3872 22.2576 26.0448 22.2576 26.7648C22.2576 27.4848 22.1328 28.0992 21.888 28.6848ZM30.2352 31.584C27.528 31.584 25.3296 29.4048 25.3296 26.7072H30.2352V31.584ZM32.6976 25.08H25.3344V20.2032H32.6976C34.0512 20.2032 35.1504 21.2976 35.1504 22.6416C35.1504 23.9856 34.0512 25.08 32.6976 25.08Z" fill="#15273F"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_3256_142">
9
- <rect width="48" height="48" fill="white"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_3256_141)">
3
- <path d="M24 4.08C13.0464 4.08 4.08 12.9312 4.08 24C4.08 35.0688 13.0464 43.92 24 43.92C34.9536 43.92 43.92 35.0688 43.92 24C43.92 12.9312 34.9536 4.08 24 4.08ZM12.8496 31.584V30.4368L18.1392 23.5392C19.0608 22.392 19.2864 21.7008 19.2864 20.7792C19.2864 19.632 18.5952 18.7104 17.448 18.7104C16.3008 18.7104 15.6096 19.4016 15.6096 20.7792L13.08 20.3184C13.3104 18.0192 15.1488 16.4112 17.6784 16.4112C20.4384 16.4112 22.0464 18.2496 22.0464 20.7792C22.0464 21.9264 21.5856 23.0784 20.6688 24.2256L16.992 29.0544H22.2816L22.512 31.584H12.8496ZM30.2352 31.584C27.528 31.584 25.3296 29.4048 25.3296 26.7072H30.2352V31.584ZM32.6976 25.08H25.3344V20.2032H32.6976C34.0512 20.2032 35.1504 21.2976 35.1504 22.6416C35.1504 23.9856 34.0512 25.08 32.6976 25.08Z" fill="white"/>
4
- <path d="M24 0C10.7664 0 0 10.7664 0 24C0 37.2336 10.7664 48 24 48C37.2336 48 48 37.2336 48 24C48 10.7664 37.2336 0 24 0ZM24 46.0752C11.8272 46.0752 1.9248 36.1728 1.9248 24C1.9248 11.8272 11.8272 1.9248 24 1.9248C36.1728 1.9248 46.0752 11.8272 46.0752 24C46.0752 36.1728 36.1728 46.0752 24 46.0752Z" fill="white"/>
5
- </g>
6
- <defs>
7
- <clipPath id="clip0_3256_141">
8
- <rect width="48" height="48" fill="white"/>
9
- </clipPath>
10
- </defs>
11
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_3256_141)">
3
- <path d="M24 4.08C13.0464 4.08 4.08 12.9312 4.08 24C4.08 35.0688 13.0464 43.92 24 43.92C34.9536 43.92 43.92 35.0688 43.92 24C43.92 12.9312 34.9536 4.08 24 4.08ZM12.8496 31.584V30.4368L18.1392 23.5392C19.0608 22.392 19.2864 21.7008 19.2864 20.7792C19.2864 19.632 18.5952 18.7104 17.448 18.7104C16.3008 18.7104 15.6096 19.4016 15.6096 20.7792L13.08 20.3184C13.3104 18.0192 15.1488 16.4112 17.6784 16.4112C20.4384 16.4112 22.0464 18.2496 22.0464 20.7792C22.0464 21.9264 21.5856 23.0784 20.6688 24.2256L16.992 29.0544H22.2816L22.512 31.584H12.8496ZM30.2352 31.584C27.528 31.584 25.3296 29.4048 25.3296 26.7072H30.2352V31.584ZM32.6976 25.08H25.3344V20.2032H32.6976C34.0512 20.2032 35.1504 21.2976 35.1504 22.6416C35.1504 23.9856 34.0512 25.08 32.6976 25.08Z" fill="#15273F"/>
4
- <path d="M24 0C10.7664 0 0 10.7664 0 24C0 37.2336 10.7664 48 24 48C37.2336 48 48 37.2336 48 24C48 10.7664 37.2336 0 24 0ZM24 46.0752C11.8272 46.0752 1.9248 36.1728 1.9248 24C1.9248 11.8272 11.8272 1.9248 24 1.9248C36.1728 1.9248 46.0752 11.8272 46.0752 24C46.0752 36.1728 36.1728 46.0752 24 46.0752Z" fill="#15273F"/>
5
- </g>
6
- <defs>
7
- <clipPath id="clip0_3256_141">
8
- <rect width="48" height="48" fill="white"/>
9
- </clipPath>
10
- </defs>
11
- </svg>
@@ -1,12 +0,0 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_3256_144)">
3
- <path d="M12 0C5.3832 0 0 5.3832 0 12C0 18.6168 5.3832 24 12 24C18.6168 24 24 18.6168 24 12C24 5.3832 18.6168 0 12 0ZM12 23.0376C5.9136 23.0376 0.9624 18.0864 0.9624 12C0.9624 5.9136 5.9136 0.9624 12 0.9624C18.0864 0.9624 23.0376 5.9136 23.0376 12C23.0376 18.0864 18.0864 23.0376 12 23.0376Z" fill="white"/>
4
- <path d="M8.6496 12.1944C8.3304 12.1944 8.0616 12.2976 7.8384 12.5016C7.6152 12.7056 7.5048 13.0008 7.5048 13.3824C7.5048 13.5672 7.5336 13.7304 7.596 13.8744C7.6584 14.0184 7.74 14.1432 7.8456 14.2464C7.9512 14.3496 8.0736 14.4288 8.2104 14.484C8.3472 14.5416 8.496 14.568 8.6496 14.568C8.9688 14.568 9.2376 14.46 9.4608 14.244C9.684 14.028 9.7944 13.74 9.7944 13.38C9.7944 12.9984 9.684 12.7056 9.4608 12.4992C9.2376 12.2952 8.9688 12.192 8.6496 12.192V12.1944Z" fill="white"/>
5
- <path d="M12 2.04C6.5232 2.04 2.04 6.4656 2.04 12C2.04 17.5344 6.5232 21.96 12 21.96C17.4768 21.96 21.96 17.5344 21.96 12C21.96 6.4656 17.4768 2.04 12 2.04ZM10.944 14.3424C10.8192 14.6352 10.6464 14.8896 10.4256 15.1056C10.2024 15.3216 9.9384 15.492 9.636 15.6144C9.3312 15.7392 9.0024 15.7992 8.6496 15.7992C8.2968 15.7992 7.9704 15.7392 7.668 15.6192C7.368 15.4992 7.1064 15.3312 6.8832 15.1152C6.66 14.8992 6.4848 14.6424 6.3576 14.3472C6.2304 14.0496 6.168 13.728 6.168 13.3824C6.168 13.1568 6.2016 12.9288 6.2688 12.6984C6.336 12.468 6.4224 12.2616 6.528 12.0792L8.6904 8.208H10.176L8.5632 10.9656H8.7336C9.072 10.9656 9.3888 11.0232 9.6816 11.1408C9.9744 11.2584 10.2288 11.4216 10.44 11.6328C10.6512 11.844 10.8192 12.0984 10.944 12.396C11.0688 12.6936 11.1288 13.0224 11.1288 13.3824C11.1288 13.7424 11.0664 14.0496 10.944 14.3424ZM15.1176 15.792C13.764 15.792 12.6648 14.7024 12.6648 13.3536H15.1176V15.792ZM16.3488 12.54H12.6672V10.1016H16.3488C17.0256 10.1016 17.5752 10.6488 17.5752 11.3208C17.5752 11.9928 17.0256 12.54 16.3488 12.54Z" fill="white"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_3256_144">
9
- <rect width="24" height="24" fill="white"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
@@ -1,12 +0,0 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_3256_144)">
3
- <path d="M12 0C5.3832 0 0 5.3832 0 12C0 18.6168 5.3832 24 12 24C18.6168 24 24 18.6168 24 12C24 5.3832 18.6168 0 12 0ZM12 23.0376C5.9136 23.0376 0.9624 18.0864 0.9624 12C0.9624 5.9136 5.9136 0.9624 12 0.9624C18.0864 0.9624 23.0376 5.9136 23.0376 12C23.0376 18.0864 18.0864 23.0376 12 23.0376Z" fill="#15273F"/>
4
- <path d="M8.6496 12.1944C8.3304 12.1944 8.0616 12.2976 7.8384 12.5016C7.6152 12.7056 7.5048 13.0008 7.5048 13.3824C7.5048 13.5672 7.5336 13.7304 7.596 13.8744C7.6584 14.0184 7.74 14.1432 7.8456 14.2464C7.9512 14.3496 8.0736 14.4288 8.2104 14.484C8.3472 14.5416 8.496 14.568 8.6496 14.568C8.9688 14.568 9.2376 14.46 9.4608 14.244C9.684 14.028 9.7944 13.74 9.7944 13.38C9.7944 12.9984 9.684 12.7056 9.4608 12.4992C9.2376 12.2952 8.9688 12.192 8.6496 12.192V12.1944Z" fill="#15273F"/>
5
- <path d="M12 2.04C6.5232 2.04 2.04 6.4656 2.04 12C2.04 17.5344 6.5232 21.96 12 21.96C17.4768 21.96 21.96 17.5344 21.96 12C21.96 6.4656 17.4768 2.04 12 2.04ZM10.944 14.3424C10.8192 14.6352 10.6464 14.8896 10.4256 15.1056C10.2024 15.3216 9.9384 15.492 9.636 15.6144C9.3312 15.7392 9.0024 15.7992 8.6496 15.7992C8.2968 15.7992 7.9704 15.7392 7.668 15.6192C7.368 15.4992 7.1064 15.3312 6.8832 15.1152C6.66 14.8992 6.4848 14.6424 6.3576 14.3472C6.2304 14.0496 6.168 13.728 6.168 13.3824C6.168 13.1568 6.2016 12.9288 6.2688 12.6984C6.336 12.468 6.4224 12.2616 6.528 12.0792L8.6904 8.208H10.176L8.5632 10.9656H8.7336C9.072 10.9656 9.3888 11.0232 9.6816 11.1408C9.9744 11.2584 10.2288 11.4216 10.44 11.6328C10.6512 11.844 10.8192 12.0984 10.944 12.396C11.0688 12.6936 11.1288 13.0224 11.1288 13.3824C11.1288 13.7424 11.0664 14.0496 10.944 14.3424ZM15.1176 15.792C13.764 15.792 12.6648 14.7024 12.6648 13.3536H15.1176V15.792ZM16.3488 12.54H12.6672V10.1016H16.3488C17.0256 10.1016 17.5752 10.6488 17.5752 11.3208C17.5752 11.9928 17.0256 12.54 16.3488 12.54Z" fill="#15273F"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_3256_144">
9
- <rect width="24" height="24" fill="white"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_3256_143)">
3
- <path d="M12 2.04C6.5232 2.04 2.04 6.4656 2.04 12C2.04 17.5344 6.5232 21.96 12 21.96C17.4768 21.96 21.96 17.5344 21.96 12C21.96 6.4656 17.4768 2.04 12 2.04ZM6.4248 15.792V15.2184L9.0696 11.7696C9.5304 11.196 9.6432 10.8504 9.6432 10.3896C9.6432 9.816 9.2976 9.3552 8.724 9.3552C8.1504 9.3552 7.8048 9.7008 7.8048 10.3896L6.54 10.1592C6.6552 9.0096 7.5744 8.2056 8.8392 8.2056C10.2192 8.2056 11.0232 9.1248 11.0232 10.3896C11.0232 10.9632 10.7928 11.5392 10.3344 12.1128L8.496 14.5272H11.1408L11.256 15.792H6.4248ZM15.1176 15.792C13.764 15.792 12.6648 14.7024 12.6648 13.3536H15.1176V15.792ZM16.3488 12.54H12.6672V10.1016H16.3488C17.0256 10.1016 17.5752 10.6488 17.5752 11.3208C17.5752 11.9928 17.0256 12.54 16.3488 12.54Z" fill="white"/>
4
- <path d="M12 0C5.3832 0 0 5.3832 0 12C0 18.6168 5.3832 24 12 24C18.6168 24 24 18.6168 24 12C24 5.3832 18.6168 0 12 0ZM12 23.0376C5.9136 23.0376 0.9624 18.0864 0.9624 12C0.9624 5.9136 5.9136 0.9624 12 0.9624C18.0864 0.9624 23.0376 5.9136 23.0376 12C23.0376 18.0864 18.0864 23.0376 12 23.0376Z" fill="white"/>
5
- </g>
6
- <defs>
7
- <clipPath id="clip0_3256_143">
8
- <rect width="24" height="24" fill="white"/>
9
- </clipPath>
10
- </defs>
11
- </svg>
@@ -1,11 +0,0 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_3256_143)">
3
- <path d="M12 2.04C6.5232 2.04 2.04 6.4656 2.04 12C2.04 17.5344 6.5232 21.96 12 21.96C17.4768 21.96 21.96 17.5344 21.96 12C21.96 6.4656 17.4768 2.04 12 2.04ZM6.4248 15.792V15.2184L9.0696 11.7696C9.5304 11.196 9.6432 10.8504 9.6432 10.3896C9.6432 9.816 9.2976 9.3552 8.724 9.3552C8.1504 9.3552 7.8048 9.7008 7.8048 10.3896L6.54 10.1592C6.6552 9.0096 7.5744 8.2056 8.8392 8.2056C10.2192 8.2056 11.0232 9.1248 11.0232 10.3896C11.0232 10.9632 10.7928 11.5392 10.3344 12.1128L8.496 14.5272H11.1408L11.256 15.792H6.4248ZM15.1176 15.792C13.764 15.792 12.6648 14.7024 12.6648 13.3536H15.1176V15.792ZM16.3488 12.54H12.6672V10.1016H16.3488C17.0256 10.1016 17.5752 10.6488 17.5752 11.3208C17.5752 11.9928 17.0256 12.54 16.3488 12.54Z" fill="#15273F"/>
4
- <path d="M12 0C5.3832 0 0 5.3832 0 12C0 18.6168 5.3832 24 12 24C18.6168 24 24 18.6168 24 12C24 5.3832 18.6168 0 12 0ZM12 23.0376C5.9136 23.0376 0.9624 18.0864 0.9624 12C0.9624 5.9136 5.9136 0.9624 12 0.9624C18.0864 0.9624 23.0376 5.9136 23.0376 12C23.0376 18.0864 18.0864 23.0376 12 23.0376Z" fill="#15273F"/>
5
- </g>
6
- <defs>
7
- <clipPath id="clip0_3256_143">
8
- <rect width="24" height="24" fill="white"/>
9
- </clipPath>
10
- </defs>
11
- </svg>