@pleodigital/design-system-votey 1.0.22 → 1.0.24

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 (106) hide show
  1. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_acknowledgments.svg +102 -0
  2. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_add-participants-to-vote.svg +133 -0
  3. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_agenda.svg +101 -0
  4. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_choose-subscription-plan.svg +216 -0
  5. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_create-first-vote.svg +86 -0
  6. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_even-available-everyone.svg +116 -0
  7. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_first-group-participants.svg +95 -0
  8. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_first-time-participant-v2.svg +71 -0
  9. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_first-time-participant.svg +65 -0
  10. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_forgot-password.svg +116 -0
  11. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_general-meeting.svg +64 -0
  12. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_home-screen-after-log-in.svg +86 -0
  13. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_loading-screen.svg +132 -0
  14. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_login.svg +94 -0
  15. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_many-voted.svg +95 -0
  16. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_observer.svg +64 -0
  17. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_one-time-voting.svg +51 -0
  18. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_participant-man.svg +54 -0
  19. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_participant-woman.svg +42 -0
  20. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_point-voting.svg +140 -0
  21. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_registration.svg +106 -0
  22. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_regular-voter.svg +41 -0
  23. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_results-preview-unavailable-v1.svg +122 -0
  24. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_survey.svg +75 -0
  25. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_test-event.svg +97 -0
  26. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_voting-ended-v3.svg +161 -0
  27. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_voting-started.svg +138 -0
  28. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_voting-type-yes-no.svg +57 -0
  29. package/dist/assets/angular/svg-raw/illustrations/background/illu_spot_questionnaire-v3.svg +138 -0
  30. package/dist/assets/angular/svg-raw/illustrations/background/illu_spot_results-voting-v3.svg +107 -0
  31. package/dist/assets/react/illustrations/background/IlluBgAcknowledgments.tsx +202 -0
  32. package/dist/assets/react/illustrations/background/IlluBgAddParticipantsToVote.tsx +244 -0
  33. package/dist/assets/react/illustrations/background/IlluBgAgenda.tsx +195 -0
  34. package/dist/assets/react/illustrations/background/IlluBgChooseSubscriptionPlan.tsx +406 -0
  35. package/dist/assets/react/illustrations/background/IlluBgCreateFirstVote.tsx +224 -0
  36. package/dist/assets/react/illustrations/background/IlluBgEvenAvailableEveryone.tsx +373 -0
  37. package/dist/assets/react/illustrations/background/IlluBgFirstGroupParticipants.tsx +296 -0
  38. package/dist/assets/react/illustrations/background/IlluBgFirstTimeParticipant.tsx +197 -0
  39. package/dist/assets/react/illustrations/background/IlluBgFirstTimeParticipantV2.tsx +202 -0
  40. package/dist/assets/react/illustrations/background/IlluBgForgotPassword.tsx +211 -0
  41. package/dist/assets/react/illustrations/background/IlluBgGeneralMeeting.tsx +121 -0
  42. package/dist/assets/react/illustrations/background/IlluBgHomeScreenAfterLogIn.tsx +254 -0
  43. package/dist/assets/react/illustrations/background/IlluBgLoadingScreen.tsx +519 -0
  44. package/dist/assets/react/illustrations/background/IlluBgLogin.tsx +243 -0
  45. package/dist/assets/react/illustrations/background/IlluBgManyVoted.tsx +225 -0
  46. package/dist/assets/react/illustrations/background/IlluBgObserver.tsx +190 -0
  47. package/dist/assets/react/illustrations/background/IlluBgOneTimeVoting.tsx +120 -0
  48. package/dist/assets/react/illustrations/background/IlluBgParticipantMan.tsx +76 -0
  49. package/dist/assets/react/illustrations/background/IlluBgParticipantWoman.tsx +84 -0
  50. package/dist/assets/react/illustrations/background/IlluBgPointVoting.tsx +324 -0
  51. package/dist/assets/react/illustrations/background/IlluBgRegistration.tsx +207 -0
  52. package/dist/assets/react/illustrations/background/IlluBgRegularVoter.tsx +66 -0
  53. package/dist/assets/react/illustrations/background/IlluBgResultsPreviewUnavailableV1.tsx +252 -0
  54. package/dist/assets/react/illustrations/background/IlluBgSurvey.tsx +143 -0
  55. package/dist/assets/react/illustrations/background/IlluBgTestEvent.tsx +244 -0
  56. package/dist/assets/react/illustrations/background/IlluBgVotingEndedV3.tsx +303 -0
  57. package/dist/assets/react/illustrations/background/IlluBgVotingStarted.tsx +297 -0
  58. package/dist/assets/react/illustrations/background/IlluBgVotingTypeYesNo.tsx +119 -0
  59. package/dist/assets/react/illustrations/background/IlluSpotQuestionnaireV3.tsx +273 -0
  60. package/dist/assets/react/illustrations/background/IlluSpotResultsVotingV3.tsx +219 -0
  61. package/dist/assets/react/illustrations/background/index.ts +30 -0
  62. package/dist/assets/react/illustrations/spot/IlluSpotAddParticipantsEmail.tsx +6 -2
  63. package/dist/assets/react/illustrations/spot/IlluSpotAddParticipantsPublicAccess.tsx +6 -2
  64. package/dist/assets/react/illustrations/spot/IlluSpotAddParticipantsSms.tsx +6 -2
  65. package/dist/assets/react/illustrations/spot/IlluSpotAddParticipantsUniqueCodes.tsx +6 -2
  66. package/dist/assets/react/illustrations/spot/IlluSpotAgenda.tsx +3 -2
  67. package/dist/assets/react/illustrations/spot/IlluSpotAgendaNoVisible.tsx +3 -2
  68. package/dist/assets/react/illustrations/spot/IlluSpotAgendaNoVisibleV2.tsx +6 -2
  69. package/dist/assets/react/illustrations/spot/IlluSpotAnswerMethodOpenEndedQuestions.tsx +3 -2
  70. package/dist/assets/react/illustrations/spot/IlluSpotAutomaticVotingStart.tsx +6 -2
  71. package/dist/assets/react/illustrations/spot/IlluSpotCanVoteV2.tsx +3 -2
  72. package/dist/assets/react/illustrations/spot/IlluSpotChat.tsx +3 -2
  73. package/dist/assets/react/illustrations/spot/IlluSpotChatNone.tsx +3 -2
  74. package/dist/assets/react/illustrations/spot/IlluSpotForum.tsx +3 -2
  75. package/dist/assets/react/illustrations/spot/IlluSpotForumNone.tsx +3 -2
  76. package/dist/assets/react/illustrations/spot/IlluSpotInteractiveVideoConference.tsx +6 -2
  77. package/dist/assets/react/illustrations/spot/IlluSpotMultipleResponseMethod.tsx +6 -2
  78. package/dist/assets/react/illustrations/spot/IlluSpotNoResult.tsx +3 -2
  79. package/dist/assets/react/illustrations/spot/IlluSpotNoVoteV2.tsx +3 -2
  80. package/dist/assets/react/illustrations/spot/IlluSpotNotProxyV2.tsx +3 -2
  81. package/dist/assets/react/illustrations/spot/IlluSpotNotVisible.tsx +1 -0
  82. package/dist/assets/react/illustrations/spot/IlluSpotOneAnswerMethod.tsx +66 -63
  83. package/dist/assets/react/illustrations/spot/IlluSpotProxyV2.tsx +3 -2
  84. package/dist/assets/react/illustrations/spot/IlluSpotReportPdf.tsx +3 -2
  85. package/dist/assets/react/illustrations/spot/IlluSpotReportPdfNone.tsx +3 -2
  86. package/dist/assets/react/illustrations/spot/IlluSpotReportPdfNoneV2.tsx +3 -2
  87. package/dist/assets/react/illustrations/spot/IlluSpotReportPdfV2.tsx +3 -2
  88. package/dist/assets/react/illustrations/spot/IlluSpotResponseMethodPointSystem.tsx +6 -2
  89. package/dist/assets/react/illustrations/spot/IlluSpotResult.tsx +3 -2
  90. package/dist/assets/react/illustrations/spot/IlluSpotStreaming.tsx +3 -2
  91. package/dist/assets/react/illustrations/spot/IlluSpotVideoconference.tsx +3 -2
  92. package/dist/assets/react/illustrations/spot/IlluSpotVisible.tsx +3 -2
  93. package/dist/assets/react/illustrations/spot/IlluSpotVoiceCommunication.tsx +6 -2
  94. package/dist/assets/react/illustrations/spot/IlluSpotVotingUneditable.tsx +3 -2
  95. package/dist/assets/react/illustrations/spot/IlluSpotVotingUneditableV2.tsx +6 -2
  96. package/dist/assets/react/illustrations/spot/IlluSpotVotingYesNoV2.tsx +1 -0
  97. package/dist/assets/react/illustrations/spotSimple/IlluSpotAnswersOpenSecretQuestionSimple.tsx +3 -2
  98. package/dist/assets/react/illustrations/spotSimple/IlluSpotAnswersQuestionPublicSimple.tsx +6 -2
  99. package/dist/assets/react/illustrations/spotSimple/IlluSpotArrowSimple.tsx +3 -2
  100. package/dist/assets/react/illustrations/spotSimple/IlluSpotClickedSimple.tsx +3 -2
  101. package/dist/assets/react/illustrations/spotSimple/IlluSpotDeliveredSimple.tsx +3 -2
  102. package/dist/assets/react/illustrations/spotSimple/IlluSpotManualVotingStartV3Simple.tsx +6 -2
  103. package/dist/assets/react/illustrations/spotSimple/IlluSpotOpenSimple.tsx +3 -2
  104. package/dist/assets/react/illustrations/spotSimple/IlluSpotProxySimple.tsx +3 -2
  105. package/dist/scss/_variables.scss +1 -1
  106. package/package.json +1 -1
@@ -5,9 +5,13 @@ const SvgIlluSpotAddParticipantsSms = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_add-participants-SMS/Default" clipPath="url(#a)">
11
+ <g
12
+ id="illu_spot_add-participants-SMS/Default"
13
+ clipPath="url(#clip0_70_5317)"
14
+ >
11
15
  <g id="illu_spot_add-participants-SMS">
12
16
  <g id="background" fill="#2BF5BA">
13
17
  <path d="M4.645 61.625c-.575-2.485 1.33-5.16 4.255-5.965 2.93-.81 5.77.555 6.345 3.04s-1.33 5.16-4.255 5.965c-2.93.81-5.77-.555-6.345-3.04" />
@@ -154,7 +158,7 @@ const SvgIlluSpotAddParticipantsSms = (props: SVGProps<SVGSVGElement>) => (
154
158
  </g>
155
159
  </g>
156
160
  <defs>
157
- <clipPath id="a">
161
+ <clipPath id="clip0_70_5317">
158
162
  <path fill="#fff" d="M0 0h200v140H0z" />
159
163
  </clipPath>
160
164
  </defs>
@@ -7,9 +7,13 @@ const SvgIlluSpotAddParticipantsUniqueCodes = (
7
7
  xmlns="http://www.w3.org/2000/svg"
8
8
  fill="none"
9
9
  viewBox="0 0 200 140"
10
+ aria-hidden={true}
10
11
  {...props}
11
12
  >
12
- <g id="illu_spot_add-participants-unique-codes/Default" clipPath="url(#a)">
13
+ <g
14
+ id="illu_spot_add-participants-unique-codes/Default"
15
+ clipPath="url(#clip0_70_5476)"
16
+ >
13
17
  <g id="illu_spot_add-participants-unique-codes">
14
18
  <g id="background" fill="#2BF5BA">
15
19
  <path d="M167.94 15.12c37.035 20.35 29.89 114.285 11.285 119.02-33.065 8.415-25.89-10.5-88.24-1.63-35.76 5.085-62.105 2.82-62.66-28.41-.47-26.37-24.44-29.855-25.245-64.235-.5-21.37 19.35-43.67 50.485-33.825 61.04 19.3 79.51-10.075 114.375 9.08" />
@@ -214,7 +218,7 @@ const SvgIlluSpotAddParticipantsUniqueCodes = (
214
218
  </g>
215
219
  </g>
216
220
  <defs>
217
- <clipPath id="a">
221
+ <clipPath id="clip0_70_5476">
218
222
  <path fill="#fff" d="M0 0h200v140H0z" />
219
223
  </clipPath>
220
224
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotAgenda = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_agenda/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_agenda/Default" clipPath="url(#clip0_70_4840)">
11
12
  <g id="illu_spot_agenda">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M12.46 31.54c-6.16-.085-10.755-4.255-10.27-9.31s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M28.71 9.745c-.725 1.41-2.56 2.02-4.1 1.36S22.405 8.77 23.13 7.36s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745M38.66 136.325C.285 127.795-5.485 90.785 14.5 56.79c25.75-43.8 56.77-52.27 88.01-53.92 32.94-1.74 63.485 1.365 58.63 28.975-6.26 35.61 35.51 27.1 36.69 62.205.635 18.91-20.63 28.875-51.035 24.665-84.82-11.745-70.96 25.87-108.13 17.61z" />
@@ -57,7 +58,7 @@ const SvgIlluSpotAgenda = (props: SVGProps<SVGSVGElement>) => (
57
58
  </g>
58
59
  </g>
59
60
  <defs>
60
- <clipPath id="a">
61
+ <clipPath id="clip0_70_4840">
61
62
  <path fill="#fff" d="M0 0h200v140H0z" />
62
63
  </clipPath>
63
64
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotAgendaNoVisible = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_agenda-no-visible/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_agenda-no-visible/Default" clipPath="url(#clip0_70_4863)">
11
12
  <g id="illu_spot_agenda-no-visible">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M38.66 136.325C.285 127.795-5.485 90.785 14.5 56.79c25.75-43.8 56.77-52.27 88.01-53.92 32.94-1.74 63.485 1.365 58.63 28.975-6.26 35.61 35.51 27.1 36.69 62.205.635 18.91-20.63 28.875-51.035 24.665-84.82-11.745-70.96 25.87-108.13 17.61zM12.46 31.54c-6.16-.085-10.755-4.255-10.27-9.31s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M28.71 9.745c-.725 1.41-2.56 2.02-4.1 1.36S22.405 8.77 23.13 7.36s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745" />
@@ -67,7 +68,7 @@ const SvgIlluSpotAgendaNoVisible = (props: SVGProps<SVGSVGElement>) => (
67
68
  </g>
68
69
  </g>
69
70
  <defs>
70
- <clipPath id="a">
71
+ <clipPath id="clip0_70_4863">
71
72
  <path fill="#fff" d="M0 0h200v140H0z" />
72
73
  </clipPath>
73
74
  </defs>
@@ -5,9 +5,13 @@ const SvgIlluSpotAgendaNoVisibleV2 = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_agenda-no-visible-v2/Default" clipPath="url(#a)">
11
+ <g
12
+ id="illu_spot_agenda-no-visible-v2/Default"
13
+ clipPath="url(#clip0_70_4888)"
14
+ >
11
15
  <g id="illu_spot_agenda-no-visible-v2">
12
16
  <g id="background" fill="#2BF5BA">
13
17
  <path d="M38.66 136.325C.285 127.795-5.485 90.785 14.5 56.79c25.75-43.8 56.77-52.27 88.01-53.92 32.94-1.74 63.485 1.365 58.63 28.975-6.26 35.61 35.51 27.1 36.69 62.205.635 18.91-20.63 28.875-51.035 24.665-84.82-11.745-70.96 25.87-108.13 17.61zM12.46 31.54c-6.16-.085-10.755-4.255-10.27-9.31s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M28.71 9.745c-.725 1.41-2.56 2.02-4.1 1.36S22.405 8.77 23.13 7.36s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745" />
@@ -67,7 +71,7 @@ const SvgIlluSpotAgendaNoVisibleV2 = (props: SVGProps<SVGSVGElement>) => (
67
71
  </g>
68
72
  </g>
69
73
  <defs>
70
- <clipPath id="a">
74
+ <clipPath id="clip0_70_4888">
71
75
  <path fill="#fff" d="M0 0h200v140H0z" />
72
76
  </clipPath>
73
77
  </defs>
@@ -7,11 +7,12 @@ const SvgIlluSpotAnswerMethodOpenEndedQuestions = (
7
7
  xmlns="http://www.w3.org/2000/svg"
8
8
  fill="none"
9
9
  viewBox="0 0 200 140"
10
+ aria-hidden={true}
10
11
  {...props}
11
12
  >
12
13
  <g
13
14
  id="illu_spot_answer-method-open-ended-questions/Default"
14
- clipPath="url(#a)"
15
+ clipPath="url(#clip0_70_4911)"
15
16
  >
16
17
  <g id="illu_spot_answer-method-open-ended-questions">
17
18
  <g id="background" fill="#2BF5BA">
@@ -94,7 +95,7 @@ const SvgIlluSpotAnswerMethodOpenEndedQuestions = (
94
95
  </g>
95
96
  </g>
96
97
  <defs>
97
- <clipPath id="a">
98
+ <clipPath id="clip0_70_4911">
98
99
  <path fill="#fff" d="M0 0h200v140H0z" />
99
100
  </clipPath>
100
101
  </defs>
@@ -5,9 +5,13 @@ const SvgIlluSpotAutomaticVotingStart = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_automatic-voting-start/Default" clipPath="url(#a)">
11
+ <g
12
+ id="illu_spot_automatic-voting-start/Default"
13
+ clipPath="url(#clip0_77_157)"
14
+ >
11
15
  <g id="illu_spot_automatic-voting-start">
12
16
  <g id="background" fill="#2BF5BA">
13
17
  <path d="M61.27 8.095C21.745 3.85-5.245 6.82 9.625 66.205c5.605 22.395 26.76 76.38 88.035 55.355 54.39-18.665 62.835 16.405 70.435-12.935 12.52-48.355 25.685-33.92 26.415-67.44.45-20.84-14.745-40.56-42.85-30.965-55.095 18.82-42.14 3.06-90.39-2.12zM18.506 120.807c1.566-2.367 1.233-5.346-.743-6.653s-4.848-.448-6.414 1.92-1.233 5.347.743 6.654 4.847.447 6.414-1.921M27.685 121.138c.574-.602.386-1.712-.42-2.48-.805-.768-1.923-.902-2.497-.301-.573.602-.385 1.712.42 2.48.806.768 1.924.903 2.497.301M180.742 132.531c1.105-1.197.514-3.542-1.322-5.238-1.835-1.696-4.219-2.101-5.325-.904-1.106 1.196-.514 3.541 1.321 5.237 1.836 1.697 4.22 2.101 5.326.905" />
@@ -68,7 +72,7 @@ const SvgIlluSpotAutomaticVotingStart = (props: SVGProps<SVGSVGElement>) => (
68
72
  </g>
69
73
  </g>
70
74
  <defs>
71
- <clipPath id="a">
75
+ <clipPath id="clip0_77_157">
72
76
  <path fill="#fff" d="M0 0h200v140H0z" />
73
77
  </clipPath>
74
78
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotCanVoteV2 = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_can-vote-v2/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_can-vote-v2/Default" clipPath="url(#clip0_70_4731)">
11
12
  <g id="illu_spot_can-vote-v2">
12
13
  <g id="backgrpund" fill="#2BF5BA">
13
14
  <path d="M177.505 26.35c-6.16-.085-10.755-4.255-10.27-9.31s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M189.575 57.125a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M191.21 35.42a2.535 2.535 0 1 0 0-5.07 2.535 2.535 0 0 0 0 5.07M18.16 18.39c-.725 1.41-2.56 2.02-4.1 1.36s-2.205-2.335-1.48-3.745 2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745M46.27 128.62C5.88 111.44-8.175 73.915 11.81 39.925 37.565-3.88 69.835-1.03 105.16 10.4c31.38 10.155 60.85 2.005 61.24 34.35.435 36.15 21.115 14.65 22.295 49.755.635 18.91-11.69 28.69-42.275 31.28-60.145 5.095-77.64 12.405-100.15 2.835" />
@@ -74,7 +75,7 @@ const SvgIlluSpotCanVoteV2 = (props: SVGProps<SVGSVGElement>) => (
74
75
  </g>
75
76
  </g>
76
77
  <defs>
77
- <clipPath id="a">
78
+ <clipPath id="clip0_70_4731">
78
79
  <path fill="#fff" d="M0 0h200v140H0z" />
79
80
  </clipPath>
80
81
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotChat = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_chat/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_chat/Default" clipPath="url(#clip0_70_4757)">
11
12
  <g id="illu_spot_chat">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M12.46 29.91C6.3 29.825 1.705 25.655 2.19 20.6s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M188.64 57.125a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M190.28 35.42a2.535 2.535 0 1 0 0-5.07 2.535 2.535 0 0 0 0 5.07M28.71 8.115c-.725 1.41-2.56 2.02-4.1 1.36S22.405 7.14 23.13 5.73s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745" />
@@ -137,7 +138,7 @@ const SvgIlluSpotChat = (props: SVGProps<SVGSVGElement>) => (
137
138
  </g>
138
139
  </g>
139
140
  <defs>
140
- <clipPath id="a">
141
+ <clipPath id="clip0_70_4757">
141
142
  <path fill="#fff" d="M0 0h200v140H0z" />
142
143
  </clipPath>
143
144
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotChatNone = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_chat-none/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_chat-none/Default" clipPath="url(#clip0_70_4797)">
11
12
  <g id="illu_spot_chat-none">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M12.46 29.91C6.3 29.825 1.705 25.655 2.19 20.6s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M188.64 57.125a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M190.28 35.42a2.535 2.535 0 1 0 0-5.07 2.535 2.535 0 0 0 0 5.07M28.71 8.115c-.725 1.41-2.56 2.02-4.1 1.36S22.405 7.14 23.13 5.73s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745" />
@@ -155,7 +156,7 @@ const SvgIlluSpotChatNone = (props: SVGProps<SVGSVGElement>) => (
155
156
  </g>
156
157
  </g>
157
158
  <defs>
158
- <clipPath id="a">
159
+ <clipPath id="clip0_70_4797">
159
160
  <path fill="#fff" d="M0 0h200v140H0z" />
160
161
  </clipPath>
161
162
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotForum = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_forum/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_forum/Default" clipPath="url(#clip0_70_5261)">
11
12
  <g id="illu_spot_forum">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M15.635 19.085c-3.825 2.75-8.55 2.28-10.55-1.05s-.52-8.26 3.31-11.005c3.825-2.75 8.55-2.28 10.55 1.05s.52 8.26-3.31 11.005M183.875 41.09a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M31.26 115.05C17.07 101.6 11.12 85.705 9.345 80.445 5.515 69.105-.115 51.68 7.78 35.42 17.47 15.47 41.245 9.915 52.415 7.305c9.21-2.15 27.17-6.68 58.56 3.475 31.38 10.155 60.85 2.005 61.24 34.35.435 36.15 21.115 14.65 22.295 49.755.045 1.33-.205 9.01-3.58 15.47-6.215 11.88-21.29 15.925-32.885 18.195-43.175 8.46-93.255 18.27-126.785-13.5" />
@@ -100,7 +101,7 @@ const SvgIlluSpotForum = (props: SVGProps<SVGSVGElement>) => (
100
101
  </g>
101
102
  </g>
102
103
  <defs>
103
- <clipPath id="a">
104
+ <clipPath id="clip0_70_5261">
104
105
  <path fill="#fff" d="M0 0h200v140H0z" />
105
106
  </clipPath>
106
107
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotForumNone = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_forum-none/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_forum-none/Default" clipPath="url(#clip0_70_5225)">
11
12
  <g id="illu_spot_forum-none">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M181.725 41.11a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M177.88 55.71a2.535 2.535 0 1 0 0-5.07 2.535 2.535 0 0 0 0 5.07M13.09 20.745c-3.825 2.75-8.55 2.28-10.55-1.05s-.52-8.26 3.31-11.005C9.675 5.94 14.4 6.41 16.4 9.74s.52 8.26-3.31 11.005" />
@@ -100,7 +101,7 @@ const SvgIlluSpotForumNone = (props: SVGProps<SVGSVGElement>) => (
100
101
  </g>
101
102
  </g>
102
103
  <defs>
103
- <clipPath id="a">
104
+ <clipPath id="clip0_70_5225">
104
105
  <path fill="#fff" d="M0 0h200v140H0z" />
105
106
  </clipPath>
106
107
  </defs>
@@ -7,9 +7,13 @@ const SvgIlluSpotInteractiveVideoConference = (
7
7
  xmlns="http://www.w3.org/2000/svg"
8
8
  fill="none"
9
9
  viewBox="0 0 200 140"
10
+ aria-hidden={true}
10
11
  {...props}
11
12
  >
12
- <g id="illu_spot_interactive-video-conference/Default" clipPath="url(#a)">
13
+ <g
14
+ id="illu_spot_interactive-video-conference/Default"
15
+ clipPath="url(#clip0_77_64)"
16
+ >
13
17
  <g id="illu_spot_interactive-video-conference">
14
18
  <g id="background" fill="#2BF5BA">
15
19
  <path d="M12.685 31.54c-6.16-.085-10.755-4.255-10.27-9.31s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M188.865 58.755a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M190.5 37.045a2.535 2.535 0 1 0 0-5.07 2.535 2.535 0 0 0 0 5.07M28.93 9.745c-.725 1.41-2.56 2.02-4.1 1.36S22.625 8.77 23.35 7.36s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745" />
@@ -118,7 +122,7 @@ const SvgIlluSpotInteractiveVideoConference = (
118
122
  </g>
119
123
  </g>
120
124
  <defs>
121
- <clipPath id="a">
125
+ <clipPath id="clip0_77_64">
122
126
  <path fill="#fff" d="M0 0h200v140H0z" />
123
127
  </clipPath>
124
128
  </defs>
@@ -5,9 +5,13 @@ const SvgIlluSpotMultipleResponseMethod = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_multiple-response-method/Default" clipPath="url(#a)">
11
+ <g
12
+ id="illu_spot_multiple-response-method/Default"
13
+ clipPath="url(#clip0_77_325)"
14
+ >
11
15
  <g id="illu_spot_multiple-response-method">
12
16
  <g id="background" fill="#2BF5BA">
13
17
  <path d="M14.632 78.113c1.198-2.076.008-5.007-2.659-6.546s-5.8-1.105-6.998.97-.008 5.007 2.658 6.547 5.8 1.104 6.999-.971M192.82 130.994c.908-2.494-1.482-5.653-5.338-7.057-3.856-1.403-7.718-.519-8.626 1.974-.907 2.494 1.483 5.653 5.339 7.057 3.856 1.403 7.718.52 8.625-1.974" />
@@ -81,7 +85,7 @@ const SvgIlluSpotMultipleResponseMethod = (props: SVGProps<SVGSVGElement>) => (
81
85
  </g>
82
86
  </g>
83
87
  <defs>
84
- <clipPath id="a">
88
+ <clipPath id="clip0_77_325">
85
89
  <path fill="#fff" d="M0 0h200v140H0z" />
86
90
  </clipPath>
87
91
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotNoResult = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_no-result/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_no-result/Default" clipPath="url(#clip0_70_5073)">
11
12
  <g id="background" fill="#2BF5BA">
12
13
  <path d="M193.442 60.572c4.105-2.592 6.059-6.867 4.366-9.547s-6.392-2.751-10.497-.158-6.059 6.867-4.366 9.547 6.393 2.75 10.497.158" />
13
14
  <path d="M193.65 16.43c10.76 11.74-29.89 32.29-20.52 61.9 17.61 55.635-73.295 62.535-107.6 52.37-26.465-7.845-35.255-22.955-44.35-35.48C9.55 79.185-2.755 59.875 5.495 36.58c8.16-23.045 40.7-39.95 89.745-27 80.02 21.13 86.75-5.875 98.415 6.85zM9.185 117.78a6.615 6.615 0 1 0 0-13.23 6.615 6.615 0 0 0 0 13.23" />
@@ -65,7 +66,7 @@ const SvgIlluSpotNoResult = (props: SVGProps<SVGSVGElement>) => (
65
66
  </g>
66
67
  </g>
67
68
  <defs>
68
- <clipPath id="a">
69
+ <clipPath id="clip0_70_5073">
69
70
  <path fill="#fff" d="M0 0h200v140H0z" />
70
71
  </clipPath>
71
72
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotNoVoteV2 = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_no-vote-v2/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_no-vote-v2/Default" clipPath="url(#clip0_70_4705)">
11
12
  <g id="illu_spot_no-vote-v2">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M177.505 26.35c-6.16-.085-10.755-4.255-10.27-9.31s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M189.575 57.125a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M191.21 35.42a2.535 2.535 0 1 0 0-5.07 2.535 2.535 0 0 0 0 5.07M18.16 18.39c-.725 1.41-2.56 2.02-4.1 1.36s-2.205-2.335-1.48-3.745 2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745M47.125 129.52C6.735 112.345-7.32 74.815 12.665 40.825 38.415-2.975 70.69-.13 106.015 11.3c31.38 10.155 60.85 2.005 61.24 34.35.435 36.15 21.115 14.65 22.295 49.755.635 18.91-11.69 28.69-42.275 31.28-60.145 5.095-77.64 12.405-100.15 2.835" />
@@ -87,7 +88,7 @@ const SvgIlluSpotNoVoteV2 = (props: SVGProps<SVGSVGElement>) => (
87
88
  </g>
88
89
  </g>
89
90
  <defs>
90
- <clipPath id="a">
91
+ <clipPath id="clip0_70_4705">
91
92
  <path fill="#fff" d="M0 0h200v140H0z" />
92
93
  </clipPath>
93
94
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotNotProxyV2 = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_not-proxy-v2/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_not-proxy-v2/Default" clipPath="url(#clip0_70_4979)">
11
12
  <g id="illu_spot_not-proxy-v2">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M16.48 131.415a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M187.48 23.58a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M168.89 16.31a3.755 3.755 0 1 0 0-7.51 3.755 3.755 0 0 0 0 7.51M190.76 117.445a2.285 2.285 0 1 0 0-4.57 2.285 2.285 0 0 0 0 4.57M36.96 124.77C4.285 105.275 1.21 72.595 11.125 34.43c10.565-40.68 55.77-29.395 92.36-23.115 25.34 4.35 55.005-3.82 74.485 18.26 13.345 15.125 15.39 36.41 8.72 67.33-3.99 18.495-19.93 24.025-38.4 30.915-28.385 10.585-90.325 9.485-111.33-3.05" />
@@ -139,7 +140,7 @@ const SvgIlluSpotNotProxyV2 = (props: SVGProps<SVGSVGElement>) => (
139
140
  </g>
140
141
  </g>
141
142
  <defs>
142
- <clipPath id="a">
143
+ <clipPath id="clip0_70_4979">
143
144
  <path fill="#fff" d="M0 0h200v140H0z" />
144
145
  </clipPath>
145
146
  </defs>
@@ -5,6 +5,7 @@ const SvgIlluSpotNotVisible = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
11
  <g id="illu_spot_not-visible/Default">
@@ -5,80 +5,83 @@ const SvgIlluSpotOneAnswerMethod = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_one-answer-method/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_one-answer-method/Default" clipPath="url(#clip0_77_280)">
11
12
  <g id="illu_spot_one-answer-method">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M20.055 110.205c-3.725 4.905-9.81 6.13-13.59 2.74-3.78-3.395-3.82-10.12-.095-15.025s9.81-6.13 13.59-2.74c3.78 3.395 3.82 10.12.095 15.025M12.165 84.19c.705 1.42.105 3.255-1.34 4.105s-3.185.385-3.895-1.03c-.705-1.42-.105-3.255 1.34-4.105s3.185-.385 3.895 1.03M165.73 10c36.965 13.38 42.895 45.8 18.715 76.95-31.155 40.135-53.59 46.115-100.55 46.25-32.985.095-59.065-12.44-51.65-39.47 7.44-27.115-30.43-32.755-31.19-63.18C.585 11.64 22.05 1.525 51.665 9.6c82.615 22.52 78.26-12.56 114.065.4" />
14
15
  </g>
15
- <g id="stroke">
16
- <path
17
- id="Vector"
18
- fill="#2AEDB4"
19
- d="M140.4 33.66H58.23a6 6 0 0 0-6 6v66.135a6 6 0 0 0 6 6h82.17a6 6 0 0 0 6-6V39.66a6 6 0 0 0-6-6"
20
- />
21
- <path
22
- id="Vector_2"
23
- fill="#fff"
24
- d="M140.4 31.535H58.23a6 6 0 0 0-6 6v66.135a6 6 0 0 0 6 6h82.17a6 6 0 0 0 6-6V37.535a6 6 0 0 0-6-6"
25
- />
26
- <path
27
- id="Vector_3"
28
- fill="#07064E"
29
- d="M56.765 31.535h85.105c2.5 0 4.53 2.03 4.53 4.53v6.76H52.23v-6.76c0-2.5 2.03-4.53 4.53-4.53z"
30
- />
31
- <path
32
- id="Vector_4"
33
- fill="#fff"
34
- d="M128.945 39.94a2.76 2.76 0 1 0 0-5.52 2.76 2.76 0 0 0 0 5.52"
35
- />
36
- <path
37
- id="Vector_5"
38
- fill="#2BF5BA"
39
- d="M136.945 39.94a2.76 2.76 0 1 0 0-5.52 2.76 2.76 0 0 0 0 5.52"
40
- />
41
- <g id="Vector_6" fill="#2BF5BA">
42
- <path d="M78.995 61.49H63.51a2.835 2.835 0 0 0-2.835 2.835V79.81a2.835 2.835 0 0 0 2.835 2.835h15.485a2.835 2.835 0 0 0 2.835-2.835V64.325a2.835 2.835 0 0 0-2.835-2.835M107.055 61.49H91.57a2.835 2.835 0 0 0-2.835 2.835V79.81a2.835 2.835 0 0 0 2.835 2.835h15.485a2.835 2.835 0 0 0 2.835-2.835V64.325a2.835 2.835 0 0 0-2.835-2.835" />
16
+ <g id="illu_spot_one-answer-method">
17
+ <g id="stroke">
18
+ <path
19
+ id="Vector"
20
+ fill="#2AEDB4"
21
+ d="M140.4 33.66H58.23a6 6 0 0 0-6 6v66.135a6 6 0 0 0 6 6h82.17a6 6 0 0 0 6-6V39.66a6 6 0 0 0-6-6"
22
+ />
23
+ <path
24
+ id="Vector_2"
25
+ fill="#fff"
26
+ d="M140.4 31.535H58.23a6 6 0 0 0-6 6v66.135a6 6 0 0 0 6 6h82.17a6 6 0 0 0 6-6V37.535a6 6 0 0 0-6-6"
27
+ />
28
+ <path
29
+ id="Vector_3"
30
+ fill="#07064E"
31
+ d="M56.765 31.535h85.105c2.5 0 4.53 2.03 4.53 4.53v6.76H52.23v-6.76c0-2.5 2.03-4.53 4.53-4.53z"
32
+ />
33
+ <path
34
+ id="Vector_4"
35
+ fill="#fff"
36
+ d="M128.945 39.94a2.76 2.76 0 1 0 0-5.52 2.76 2.76 0 0 0 0 5.52"
37
+ />
38
+ <path
39
+ id="Vector_5"
40
+ fill="#2BF5BA"
41
+ d="M136.945 39.94a2.76 2.76 0 1 0 0-5.52 2.76 2.76 0 0 0 0 5.52"
42
+ />
43
+ <g id="Vector_6" fill="#2BF5BA">
44
+ <path d="M78.995 61.49H63.51a2.835 2.835 0 0 0-2.835 2.835V79.81a2.835 2.835 0 0 0 2.835 2.835h15.485a2.835 2.835 0 0 0 2.835-2.835V64.325a2.835 2.835 0 0 0-2.835-2.835M107.055 61.49H91.57a2.835 2.835 0 0 0-2.835 2.835V79.81a2.835 2.835 0 0 0 2.835 2.835h15.485a2.835 2.835 0 0 0 2.835-2.835V64.325a2.835 2.835 0 0 0-2.835-2.835" />
45
+ </g>
46
+ <path
47
+ id="Vector_7"
48
+ fill="#EDEDED"
49
+ d="M135.12 63.62h-15.485a2.835 2.835 0 0 0-2.835 2.836V81.94a2.835 2.835 0 0 0 2.835 2.835h15.485a2.835 2.835 0 0 0 2.835-2.835V66.456a2.835 2.835 0 0 0-2.835-2.835"
50
+ />
51
+ <path
52
+ id="Vector_8"
53
+ fill="#07064E"
54
+ d="M135.12 61.49h-15.485a2.835 2.835 0 0 0-2.835 2.835V79.81a2.835 2.835 0 0 0 2.835 2.835h15.485a2.835 2.835 0 0 0 2.835-2.835V64.325a2.835 2.835 0 0 0-2.835-2.835"
55
+ />
56
+ <g id="Vector_9" fill="#fff">
57
+ <path d="M77.555 78.8h-1.41a.6.6 0 0 1-.395-.12.74.74 0 0 1-.225-.31l-1.26-3.25h-6.04l-1.26 3.25a.66.66 0 0 1-.215.3.6.6 0 0 1-.395.13h-1.41l5.38-13.455h1.84l5.38 13.455zm-3.795-4.995-2.115-5.475a8 8 0 0 1-.195-.57 13 13 0 0 1-.2-.69c-.13.51-.265.93-.405 1.27l-2.115 5.465zM98.865 65.34c.825 0 1.54.08 2.135.245q.899.246 1.475.695.579.451.85 1.105.27.653.27 1.47c0 .335-.05.65-.155.955s-.26.585-.465.85-.47.5-.785.71a4.2 4.2 0 0 1-1.115.51c.99.19 1.73.54 2.23 1.055s.745 1.195.745 2.035q0 .855-.315 1.56-.314.706-.92 1.21-.606.509-1.49.785-.885.276-2.01.275h-4.75V65.345h4.29zm-2.48 1.44v4.59h2.405q.771.001 1.34-.17c.38-.115.69-.27.94-.47q.369-.301.55-.73.18-.426.18-.935-.001-1.192-.715-1.74-.714-.549-2.215-.55h-2.48zm2.91 10.57c.52 0 .965-.06 1.345-.18q.564-.179.925-.5c.24-.215.42-.475.53-.77q.171-.449.17-.98.001-1.042-.74-1.65-.741-.606-2.225-.605h-2.91v4.685h2.91zM132.02 76.02q.151 0 .265.12l.725.78a5.8 5.8 0 0 1-2.005 1.495q-1.178.534-2.85.535c-.965 0-1.84-.17-2.63-.5a5.8 5.8 0 0 1-2.02-1.41 6.4 6.4 0 0 1-1.295-2.175q-.459-1.267-.46-2.79 0-1.522.48-2.79a6.4 6.4 0 0 1 1.35-2.18 6.05 6.05 0 0 1 2.08-1.415c.805-.335 1.7-.505 2.675-.505s1.805.155 2.535.46 1.375.725 1.935 1.25l-.6.835a.5.5 0 0 1-.145.155q-.09.06-.24.06c-.115 0-.25-.06-.415-.185a7 7 0 0 0-.64-.41 5 5 0 0 0-.985-.41c-.395-.12-.88-.185-1.455-.185q-1.042 0-1.905.36-.861.361-1.49 1.045a4.9 4.9 0 0 0-.97 1.67q-.345.989-.345 2.225c0 .825.12 1.585.36 2.245q.361.99.985 1.665c.415.455.91.8 1.475 1.04s1.18.355 1.835.355q.599-.001 1.085-.07c.32-.05.62-.12.89-.22q.406-.149.76-.38a5 5 0 0 0 .7-.55.48.48 0 0 1 .32-.14z" />
58
+ </g>
59
+ <path
60
+ id="Vector_10"
61
+ fill="#2AEDB4"
62
+ d="M152.695 92.49c-.06-.16-.13-.3-.245-.46l-5.555-7.805c-.125-.175-.3-.3-.5-.375v16.57c.335-.12.66-.28.965-.5l3.88-2.765c1.49-1.06 2.07-3.04 1.45-4.67z"
63
+ />
64
+ <path
65
+ id="Vector_11"
66
+ fill="#EDEDED"
67
+ d="M146.4 83.85c-.455-.18-1.04-.11-1.535.245-.7.5-.94 1.355-.555 1.935-.42-.555-1.31-.61-2.01-.11s-.94 1.355-.555 1.935c-.42-.555-1.31-.61-2.01-.11-.69.49-.93 1.33-.57 1.91l-4.38-6.15a1.577 1.577 0 1 0-2.57 1.83l8.085 11.36-3.675-.62a1.57 1.57 0 0 0-1.815 1.295 1.57 1.57 0 0 0 1.295 1.815l8.015 1.35q.306.075.62.105h.04c.14.03.28.03.42.015.405-.01.805-.09 1.195-.23v-16.57z"
68
+ />
69
+ <path
70
+ id="Vector_12"
71
+ fill="#fff"
72
+ d="M146.895 82.105c-.41-.58-1.32-.64-2.03-.135-.7.5-.94 1.355-.555 1.935-.42-.555-1.31-.61-2.01-.11s-.94 1.355-.555 1.935c-.42-.555-1.31-.61-2.01-.11-.69.49-.93 1.33-.57 1.91l-4.38-6.15a1.577 1.577 0 1 0-2.57 1.83l8.085 11.36-3.675-.62a1.57 1.57 0 0 0-1.815 1.295 1.57 1.57 0 0 0 1.295 1.815l8.015 1.35q.306.075.62.105h.04c.14.03.28.03.42.015a3.94 3.94 0 0 0 2.165-.725l3.88-2.76c1.49-1.06 2.07-3.04 1.45-4.67-.06-.16-.13-.3-.245-.46l-5.555-7.805z"
73
+ />
74
+ <path
75
+ id="Vector_13"
76
+ fill="#07064E"
77
+ d="M145.01 98.79q-.135.001-.27-.02a5 5 0 0 1-.685-.115l-7.995-1.345a1.825 1.825 0 0 1-1.5-2.105 1.83 1.83 0 0 1 2.105-1.5l3.08.52-7.735-10.87c-.285-.4-.395-.88-.315-1.365s.345-.9.74-1.185a1.8 1.8 0 0 1 1.365-.315c.48.08.9.345 1.185.74l3.8 5.34c.1-.435.375-.855.8-1.155.55-.39 1.2-.485 1.72-.3-.005-.555.295-1.135.845-1.525s1.2-.485 1.72-.3c-.005-.555.295-1.135.845-1.525.39-.28.845-.41 1.29-.385.46.03.85.235 1.09.58l5.555 7.805c.12.17.205.33.275.52.67 1.765.025 3.85-1.54 4.96l-3.88 2.765c-.675.48-1.47.75-2.3.775q-.104.009-.2.01zm-8.64-4.615c-.635 0-1.2.46-1.31 1.105-.06.35.02.7.23.99.205.29.51.48.86.54l8.015 1.35c.21.05.405.085.6.1.005 0 .055.01.065.01.1.015.215.02.35.005a3.7 3.7 0 0 0 2.045-.68l3.88-2.765c1.38-.98 1.95-2.825 1.36-4.38-.055-.15-.12-.27-.215-.405l-5.555-7.805c-.155-.22-.41-.35-.715-.37-.33-.02-.67.085-.965.295-.58.415-.8 1.13-.49 1.595a.247.247 0 0 1-.065.34.25.25 0 0 1-.345-.055c-.34-.445-1.085-.47-1.665-.06-.58.415-.8 1.13-.49 1.595a.247.247 0 0 1-.065.34.25.25 0 0 1-.345-.055c-.34-.445-1.085-.47-1.665-.06-.575.41-.795 1.1-.5 1.57.07.115.04.265-.075.34a.254.254 0 0 1-.345-.065l-4.38-6.15c-.205-.29-.51-.48-.86-.54s-.7.02-.99.23c-.29.205-.48.51-.54.86s.02.7.23.99l8.085 11.36c.06.085.06.19.01.28a.235.235 0 0 1-.255.115l-3.675-.62a1 1 0 0 0-.22-.02z"
78
+ />
43
79
  </g>
44
- <path
45
- id="Vector_7"
46
- fill="#EDEDED"
47
- d="M135.12 63.62h-15.485a2.835 2.835 0 0 0-2.835 2.836V81.94a2.835 2.835 0 0 0 2.835 2.835h15.485a2.835 2.835 0 0 0 2.835-2.835V66.456a2.835 2.835 0 0 0-2.835-2.835"
48
- />
49
- <path
50
- id="Vector_8"
51
- fill="#07064E"
52
- d="M135.12 61.49h-15.485a2.835 2.835 0 0 0-2.835 2.835V79.81a2.835 2.835 0 0 0 2.835 2.835h15.485a2.835 2.835 0 0 0 2.835-2.835V64.325a2.835 2.835 0 0 0-2.835-2.835"
53
- />
54
- <g id="Vector_9" fill="#fff">
55
- <path d="M77.555 78.8h-1.41a.6.6 0 0 1-.395-.12.74.74 0 0 1-.225-.31l-1.26-3.25h-6.04l-1.26 3.25a.66.66 0 0 1-.215.3.6.6 0 0 1-.395.13h-1.41l5.38-13.455h1.84l5.38 13.455zm-3.795-4.995-2.115-5.475a8 8 0 0 1-.195-.57 13 13 0 0 1-.2-.69c-.13.51-.265.93-.405 1.27l-2.115 5.465zM98.865 65.34c.825 0 1.54.08 2.135.245q.899.246 1.475.695.579.451.85 1.105.27.653.27 1.47c0 .335-.05.65-.155.955s-.26.585-.465.85-.47.5-.785.71a4.2 4.2 0 0 1-1.115.51c.99.19 1.73.54 2.23 1.055s.745 1.195.745 2.035q0 .855-.315 1.56-.314.706-.92 1.21-.606.509-1.49.785-.885.276-2.01.275h-4.75V65.345h4.29zm-2.48 1.44v4.59h2.405q.771.001 1.34-.17c.38-.115.69-.27.94-.47q.369-.301.55-.73.18-.426.18-.935-.001-1.192-.715-1.74-.714-.549-2.215-.55h-2.48zm2.91 10.57c.52 0 .965-.06 1.345-.18q.564-.179.925-.5c.24-.215.42-.475.53-.77q.171-.449.17-.98.001-1.042-.74-1.65-.741-.606-2.225-.605h-2.91v4.685h2.91zM132.02 76.02q.151 0 .265.12l.725.78a5.8 5.8 0 0 1-2.005 1.495q-1.178.534-2.85.535c-.965 0-1.84-.17-2.63-.5a5.8 5.8 0 0 1-2.02-1.41 6.4 6.4 0 0 1-1.295-2.175q-.459-1.267-.46-2.79 0-1.522.48-2.79a6.4 6.4 0 0 1 1.35-2.18 6.05 6.05 0 0 1 2.08-1.415c.805-.335 1.7-.505 2.675-.505s1.805.155 2.535.46 1.375.725 1.935 1.25l-.6.835a.5.5 0 0 1-.145.155q-.09.06-.24.06c-.115 0-.25-.06-.415-.185a7 7 0 0 0-.64-.41 5 5 0 0 0-.985-.41c-.395-.12-.88-.185-1.455-.185q-1.042 0-1.905.36-.861.361-1.49 1.045a4.9 4.9 0 0 0-.97 1.67q-.345.989-.345 2.225c0 .825.12 1.585.36 2.245q.361.99.985 1.665c.415.455.91.8 1.475 1.04s1.18.355 1.835.355q.599-.001 1.085-.07c.32-.05.62-.12.89-.22q.406-.149.76-.38a5 5 0 0 0 .7-.55.48.48 0 0 1 .32-.14z" />
56
- </g>
57
- <path
58
- id="Vector_10"
59
- fill="#2AEDB4"
60
- d="M152.695 92.49c-.06-.16-.13-.3-.245-.46l-5.555-7.805c-.125-.175-.3-.3-.5-.375v16.57c.335-.12.66-.28.965-.5l3.88-2.765c1.49-1.06 2.07-3.04 1.45-4.67z"
61
- />
62
- <path
63
- id="Vector_11"
64
- fill="#EDEDED"
65
- d="M146.4 83.85c-.455-.18-1.04-.11-1.535.245-.7.5-.94 1.355-.555 1.935-.42-.555-1.31-.61-2.01-.11s-.94 1.355-.555 1.935c-.42-.555-1.31-.61-2.01-.11-.69.49-.93 1.33-.57 1.91l-4.38-6.15a1.577 1.577 0 1 0-2.57 1.83l8.085 11.36-3.675-.62a1.57 1.57 0 0 0-1.815 1.295 1.57 1.57 0 0 0 1.295 1.815l8.015 1.35q.306.075.62.105h.04c.14.03.28.03.42.015.405-.01.805-.09 1.195-.23v-16.57z"
66
- />
67
- <path
68
- id="Vector_12"
69
- fill="#fff"
70
- d="M146.895 82.105c-.41-.58-1.32-.64-2.03-.135-.7.5-.94 1.355-.555 1.935-.42-.555-1.31-.61-2.01-.11s-.94 1.355-.555 1.935c-.42-.555-1.31-.61-2.01-.11-.69.49-.93 1.33-.57 1.91l-4.38-6.15a1.577 1.577 0 1 0-2.57 1.83l8.085 11.36-3.675-.62a1.57 1.57 0 0 0-1.815 1.295 1.57 1.57 0 0 0 1.295 1.815l8.015 1.35q.306.075.62.105h.04c.14.03.28.03.42.015a3.94 3.94 0 0 0 2.165-.725l3.88-2.76c1.49-1.06 2.07-3.04 1.45-4.67-.06-.16-.13-.3-.245-.46l-5.555-7.805z"
71
- />
72
- <path
73
- id="Vector_13"
74
- fill="#07064E"
75
- d="M145.01 98.79q-.135.001-.27-.02a5 5 0 0 1-.685-.115l-7.995-1.345a1.825 1.825 0 0 1-1.5-2.105 1.83 1.83 0 0 1 2.105-1.5l3.08.52-7.735-10.87c-.285-.4-.395-.88-.315-1.365s.345-.9.74-1.185a1.8 1.8 0 0 1 1.365-.315c.48.08.9.345 1.185.74l3.8 5.34c.1-.435.375-.855.8-1.155.55-.39 1.2-.485 1.72-.3-.005-.555.295-1.135.845-1.525s1.2-.485 1.72-.3c-.005-.555.295-1.135.845-1.525.39-.28.845-.41 1.29-.385.46.03.85.235 1.09.58l5.555 7.805c.12.17.205.33.275.52.67 1.765.025 3.85-1.54 4.96l-3.88 2.765c-.675.48-1.47.75-2.3.775q-.104.009-.2.01zm-8.64-4.615c-.635 0-1.2.46-1.31 1.105-.06.35.02.7.23.99.205.29.51.48.86.54l8.015 1.35c.21.05.405.085.6.1.005 0 .055.01.065.01.1.015.215.02.35.005a3.7 3.7 0 0 0 2.045-.68l3.88-2.765c1.38-.98 1.95-2.825 1.36-4.38-.055-.15-.12-.27-.215-.405l-5.555-7.805c-.155-.22-.41-.35-.715-.37-.33-.02-.67.085-.965.295-.58.415-.8 1.13-.49 1.595a.247.247 0 0 1-.065.34.25.25 0 0 1-.345-.055c-.34-.445-1.085-.47-1.665-.06-.58.415-.8 1.13-.49 1.595a.247.247 0 0 1-.065.34.25.25 0 0 1-.345-.055c-.34-.445-1.085-.47-1.665-.06-.575.41-.795 1.1-.5 1.57.07.115.04.265-.075.34a.254.254 0 0 1-.345-.065l-4.38-6.15c-.205-.29-.51-.48-.86-.54s-.7.02-.99.23c-.29.205-.48.51-.54.86s.02.7.23.99l8.085 11.36c.06.085.06.19.01.28a.235.235 0 0 1-.255.115l-3.675-.62a1 1 0 0 0-.22-.02z"
76
- />
77
80
  </g>
78
81
  </g>
79
82
  </g>
80
83
  <defs>
81
- <clipPath id="a">
84
+ <clipPath id="clip0_77_280">
82
85
  <path fill="#fff" d="M0 0h200v140H0z" />
83
86
  </clipPath>
84
87
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotProxyV2 = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_proxy-v2/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_proxy-v2/Default" clipPath="url(#clip0_70_4942)">
11
12
  <g id="illu_spot_proxy-v2">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M16.48 131.415a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M187.48 23.58a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M168.89 16.31a3.755 3.755 0 1 0 0-7.51 3.755 3.755 0 0 0 0 7.51M190.76 117.445a2.285 2.285 0 1 0 0-4.57 2.285 2.285 0 0 0 0 4.57M36.96 124.77C4.285 105.275 1.21 72.595 11.125 34.43c10.565-40.68 55.77-29.395 92.36-23.115 25.34 4.35 55.005-3.82 74.485 18.26 13.345 15.125 15.39 36.41 8.72 67.33-3.99 18.495-19.93 24.025-38.4 30.915-28.385 10.585-90.325 9.485-111.33-3.05" />
@@ -108,7 +109,7 @@ const SvgIlluSpotProxyV2 = (props: SVGProps<SVGSVGElement>) => (
108
109
  </g>
109
110
  </g>
110
111
  <defs>
111
- <clipPath id="a">
112
+ <clipPath id="clip0_70_4942">
112
113
  <path fill="#fff" d="M0 0h200v140H0z" />
113
114
  </clipPath>
114
115
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotReportPdf = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_report-pdf/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_report-pdf/Default" clipPath="url(#clip0_70_4486)">
11
12
  <g id="illu_spot_report-pdf">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M12.46 31.54c-6.16-.085-10.755-4.255-10.27-9.31s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M188.645 58.755a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M190.28 37.045a2.535 2.535 0 1 0 0-5.07 2.535 2.535 0 0 0 0 5.07M28.71 9.745c-.725 1.41-2.56 2.02-4.1 1.36S22.405 8.77 23.13 7.36s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745" />
@@ -53,7 +54,7 @@ const SvgIlluSpotReportPdf = (props: SVGProps<SVGSVGElement>) => (
53
54
  </g>
54
55
  </g>
55
56
  <defs>
56
- <clipPath id="a">
57
+ <clipPath id="clip0_70_4486">
57
58
  <path fill="#fff" d="M0 0h200v140H0z" />
58
59
  </clipPath>
59
60
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotReportPdfNone = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_report-pdf-none/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_report-pdf-none/Default" clipPath="url(#clip0_70_4507)">
11
12
  <g id="illu_spot_report-pdf-none">
12
13
  <g id="Vector" fill="#2BF5BA">
13
14
  <path d="M12.46 31.54c-6.16-.085-10.755-4.255-10.27-9.31s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M188.645 58.755a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M190.28 37.045a2.535 2.535 0 1 0 0-5.07 2.535 2.535 0 0 0 0 5.07M28.71 9.745c-.725 1.41-2.56 2.02-4.1 1.36S22.405 8.77 23.13 7.36s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745" />
@@ -69,7 +70,7 @@ const SvgIlluSpotReportPdfNone = (props: SVGProps<SVGSVGElement>) => (
69
70
  </g>
70
71
  </g>
71
72
  <defs>
72
- <clipPath id="a">
73
+ <clipPath id="clip0_70_4507">
73
74
  <path fill="#fff" d="M0 0h200v140H0z" />
74
75
  </clipPath>
75
76
  </defs>