pixel-react 1.4.3 → 1.4.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (129) hide show
  1. package/.yarn/install-state.gz +0 -0
  2. package/lib/components/AddResourceButton/type.d.ts +1 -1
  3. package/lib/components/Drawer/Types.d.ts +4 -0
  4. package/lib/components/Excel/ExcelContextMenu/ExcelContextMenu.d.ts +13 -0
  5. package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +0 -13
  6. package/lib/components/Excel/ExcelFile/ExcelFileComponents/actions.d.ts +29 -1
  7. package/lib/components/Excel/ExcelFile/ExcelFileComponents/engine/engine.d.ts +3 -9
  8. package/lib/components/Excel/ExcelFile/ExcelFileComponents/engine/formula.d.ts +2 -10
  9. package/lib/components/Excel/ExcelFile/ExcelFileComponents/engine/point-graph.d.ts +0 -1
  10. package/lib/components/Excel/ExcelFile/ExcelFileComponents/types.d.ts +27 -2
  11. package/lib/components/Form/Forms.d.ts +4 -2
  12. package/lib/components/InputWithDropdown/InputWithDropdown.d.ts +1 -1
  13. package/lib/components/MenuOption/MenuOption.d.ts +1 -1
  14. package/lib/components/MenuOption/types.d.ts +49 -15
  15. package/lib/components/MultiSelect/MultiSelect.d.ts +1 -1
  16. package/lib/components/MultiSelect/MultiSelectTypes.d.ts +4 -5
  17. package/lib/components/MultiSelect/dropdownTypes.d.ts +2 -0
  18. package/lib/components/RadioButton/RadioButton.d.ts +1 -0
  19. package/lib/components/RadioButton/radioButtonTypes.d.ts +3 -1
  20. package/lib/components/Select/components/types.d.ts +4 -2
  21. package/lib/components/Table/Table.d.ts +1 -1
  22. package/lib/components/ToggleSwitch/ToggleSwitch.d.ts +10 -0
  23. package/lib/components/ToggleSwitch/index.d.ts +1 -0
  24. package/lib/index.d.ts +109 -23
  25. package/lib/index.esm.js +5711 -635
  26. package/lib/index.esm.js.map +1 -1
  27. package/lib/index.js +5707 -629
  28. package/lib/index.js.map +1 -1
  29. package/lib/tsconfig.tsbuildinfo +1 -1
  30. package/package.json +11 -11
  31. package/src/StyleGuide/ColorPalette/colorPaletteList.ts +10 -0
  32. package/src/assets/Themes/BaseTheme.scss +17 -23
  33. package/src/assets/Themes/DarkTheme.scss +25 -38
  34. package/src/assets/icons/apk_file_type.svg +4 -0
  35. package/src/assets/icons/compressed_file_type.svg +4 -0
  36. package/src/assets/icons/csv_file_type.svg +4 -0
  37. package/src/assets/icons/excel_corner_menu.svg +3 -0
  38. package/src/assets/icons/formula_icon.svg +3 -0
  39. package/src/assets/icons/gif_file_type.svg +4 -0
  40. package/src/assets/icons/html_file_type.svg +4 -0
  41. package/src/assets/icons/ipk_file_type.svg +4 -0
  42. package/src/assets/icons/jpg_file_type.svg +4 -0
  43. package/src/assets/icons/json_file_type.svg +4 -0
  44. package/src/assets/icons/pdf_file_type.svg +4 -0
  45. package/src/assets/icons/png_file_type.svg +4 -0
  46. package/src/assets/icons/quick_run_setting_icon.svg +5 -0
  47. package/src/assets/icons/run_automation_scripts_icon.svg +33 -0
  48. package/src/assets/icons/run_manual_testcase_icon.svg +4 -0
  49. package/src/assets/icons/search.svg +2 -2
  50. package/src/assets/icons/txt_file_type.svg +4 -0
  51. package/src/assets/icons/xls_file_type.svg +4 -0
  52. package/src/assets/icons/xlsx_file_type.svg +4 -0
  53. package/src/assets/icons/xml_file_type.svg +4 -0
  54. package/src/components/AddResourceButton/AddButton.tsx +7 -7
  55. package/src/components/AddResourceButton/type.ts +1 -1
  56. package/src/components/AttachmentButton/AttachmentButton.scss +1 -1
  57. package/src/components/AttachmentButton/AttachmentButton.stories.tsx +1 -0
  58. package/src/components/Button/Button.scss +22 -20
  59. package/src/components/Button/Button.tsx +8 -1
  60. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +2 -2
  61. package/src/components/Drawer/Drawer.scss +4 -3
  62. package/src/components/Drawer/Drawer.tsx +14 -18
  63. package/src/components/Drawer/Types.ts +4 -0
  64. package/src/components/Editor/Editor.tsx +9 -11
  65. package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.scss +39 -0
  66. package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.tsx +51 -0
  67. package/src/components/Excel/ExcelFile/ExcelFile.tsx +7 -8
  68. package/src/components/Excel/ExcelFile/ExcelFileComponents/Cell.tsx +35 -0
  69. package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +44 -7
  70. package/src/components/Excel/ExcelFile/ExcelFileComponents/CornerIndicator.tsx +8 -1
  71. package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +45 -6
  72. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +37 -2
  73. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +69 -24
  74. package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +59 -0
  75. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/engine.ts +18 -65
  76. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/formula.ts +5 -110
  77. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-graph.ts +0 -2
  78. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducer.ts +105 -1
  79. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +670 -673
  80. package/src/components/Excel/ExcelFile/ExcelFileComponents/types.ts +38 -2
  81. package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +0 -4
  82. package/src/components/FileDropzone/FileDropzone.scss +4 -2
  83. package/src/components/FileDropzone/FileDropzone.tsx +1 -1
  84. package/src/components/FileDropzone/FilePreview.tsx +3 -1
  85. package/src/components/Form/Form.scss +2 -0
  86. package/src/components/Form/Form.stories.tsx +195 -6
  87. package/src/components/Form/Forms.tsx +15 -8
  88. package/src/components/Icon/iconList.ts +46 -0
  89. package/src/components/IconRadioGroup/IconRadioGroup.scss +3 -0
  90. package/src/components/IconRadioGroup/IconRadioGroup.tsx +20 -17
  91. package/src/components/Input/Input.scss +14 -15
  92. package/src/components/Input/Input.stories.tsx +2 -1
  93. package/src/components/InputWithDropdown/InputWithDropdown.scss +12 -13
  94. package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +3 -2
  95. package/src/components/InputWithDropdown/InputWithDropdown.tsx +22 -19
  96. package/src/components/MenuOption/MenuOption.scss +11 -10
  97. package/src/components/MenuOption/MenuOption.stories.tsx +51 -232
  98. package/src/components/MenuOption/MenuOption.tsx +131 -52
  99. package/src/components/MenuOption/types.ts +55 -14
  100. package/src/components/MiniModal/MiniModal.stories.tsx +2 -3
  101. package/src/components/MultiSelect/Dropdown.tsx +11 -12
  102. package/src/components/MultiSelect/MultiSelect.scss +1 -0
  103. package/src/components/MultiSelect/MultiSelect.stories.tsx +45 -10
  104. package/src/components/MultiSelect/MultiSelect.tsx +29 -13
  105. package/src/components/MultiSelect/MultiSelectTypes.ts +7 -5
  106. package/src/components/MultiSelect/dropdownTypes.ts +2 -0
  107. package/src/components/RadioButton/RadioButton.scss +3 -1
  108. package/src/components/RadioButton/RadioButton.tsx +3 -1
  109. package/src/components/RadioButton/radioButtonTypes.tsx +5 -1
  110. package/src/components/Search/Search.scss +25 -6
  111. package/src/components/Search/Search.tsx +45 -24
  112. package/src/components/Select/Select.scss +12 -12
  113. package/src/components/Select/Select.stories.tsx +2 -0
  114. package/src/components/Select/Select.tsx +11 -5
  115. package/src/components/Select/components/Dropdown.scss +2 -0
  116. package/src/components/Select/components/Dropdown.tsx +19 -4
  117. package/src/components/Select/components/types.ts +4 -2
  118. package/src/components/StatusButton/StatusButton.tsx +26 -20
  119. package/src/components/Table/Table.scss +1 -3
  120. package/src/components/Table/Table.stories.tsx +1 -0
  121. package/src/components/Table/Table.tsx +7 -3
  122. package/src/components/ToggleSwitch/ToggleSwitch.scss +59 -0
  123. package/src/components/ToggleSwitch/ToggleSwitch.stories.tsx +52 -0
  124. package/src/components/ToggleSwitch/ToggleSwitch.tsx +30 -0
  125. package/src/components/ToggleSwitch/index.ts +1 -0
  126. package/src/hooks/useFileDropzone.tsx +1 -0
  127. package/src/index.ts +4 -2
  128. package/src/components/Excel/ContextMenu/ContextMenu.scss +0 -99
  129. package/src/components/Excel/ContextMenu/ContextMenu.tsx +0 -103
@@ -1 +1 @@
1
- {"root":["../src/index.ts","../src/styleguide/colorpalette/colorpalette.tsx","../src/styleguide/colorpalette/colorpalettelist.ts","../src/styleguide/colorpalette/index.ts","../src/styleguide/colorpalette/types.ts","../src/styleguide/typography/typography.tsx","../src/styleguide/typography/typographylist.ts","../src/styleguide/typography/types.ts","../src/assets/utils/functionutils.ts","../src/components/accordion/accordion.tsx","../src/components/accordion/index.ts","../src/components/accordion/types.ts","../src/components/addresourcebutton/addbutton.tsx","../src/components/addresourcebutton/index.ts","../src/components/addresourcebutton/type.ts","../src/components/addresourcebutton/arrowsbutton/arrowsbutton.tsx","../src/components/allprojectsdropdown/allprojectsdropdown.tsx","../src/components/allprojectsdropdown/index.ts","../src/components/allprojectsdropdown/types.ts","../src/components/appheader/appheader.tsx","../src/components/appheader/index.ts","../src/components/appheader/types.ts","../src/components/attachimage/attachimage.tsx","../src/components/attachimage/index.ts","../src/components/attachimage/types.ts","../src/components/attachmentbutton/attachmentbutton.tsx","../src/components/attachmentbutton/index.ts","../src/components/attachmentbutton/types.ts","../src/components/avatar/avatar.tsx","../src/components/avatar/index.ts","../src/components/avatar/types.ts","../src/components/button/button.tsx","../src/components/button/index.ts","../src/components/button/types.ts","../src/components/charts/barchart/barchart.tsx","../src/components/charts/barchart/index.ts","../src/components/charts/barchart/types.ts","../src/components/charts/dashboarddonutchart/dashboarddonutchart.tsx","../src/components/charts/dashboarddonutchart/index.ts","../src/components/charts/dashboarddonutchart/types.ts","../src/components/charts/donutchart/donutchart.tsx","../src/components/charts/donutchart/index.ts","../src/components/charts/donutchart/type.ts","../src/components/charts/iconradialchart/iconradialchart.tsx","../src/components/charts/iconradialchart/index.ts","../src/components/charts/iconradialchart/types.ts","../src/components/charts/linechart/linechart.tsx","../src/components/charts/linechart/index.ts","../src/components/charts/linechart/types.ts","../src/components/charts/multiradialchart/multiradialchart.tsx","../src/components/charts/multiradialchart/index.ts","../src/components/charts/multiradialchart/types.ts","../src/components/charts/piechart/piechart.tsx","../src/components/charts/piechart/index.ts","../src/components/charts/piechart/types.ts","../src/components/charts/radialchart/radialchart.tsx","../src/components/charts/radialchart/index.ts","../src/components/charts/radialchart/types.ts","../src/components/checkbox/checkbox.tsx","../src/components/checkbox/index.ts","../src/components/checkbox/types.ts","../src/components/chip/chip.tsx","../src/components/chip/index.ts","../src/components/chip/types.ts","../src/components/connectingbranch/connectingbranch.tsx","../src/components/connectingbranch/data.ts","../src/components/connectingbranch/index.ts","../src/components/connectingbranch/types.ts","../src/components/connectingbranch/branchcomponents/machineinstances.tsx","../src/components/datepicker/datepicker.tsx","../src/components/datepicker/timepicker.tsx","../src/components/datepicker/index.ts","../src/components/datepicker/types.ts","../src/components/draganddrop/draganddrop.ts","../src/components/draganddrop/draganddroplist.tsx","../src/components/draganddrop/index.ts","../src/components/drawer/drawer.tsx","../src/components/drawer/types.ts","../src/components/drawer/index.ts","../src/components/edittextfield/edittextfield.tsx","../src/components/edittextfield/index.ts","../src/components/edittextfield/types.ts","../src/components/editor/editor.tsx","../src/components/editor/variabledropdown.tsx","../src/components/editor/constants.ts","../src/components/editor/index.ts","../src/components/editor/types.ts","../src/components/excel/types.ts","../src/components/excel/index.ts","../src/components/excel/colorbarselector/colorbarselector.tsx","../src/components/excel/contextmenu/contextmenu.tsx","../src/components/excel/excelfile/excelfile.tsx","../src/components/excel/excelfile/excelfilecomponents/activecell.tsx","../src/components/excel/excelfile/excelfilecomponents/cell.tsx","../src/components/excel/excelfile/excelfilecomponents/columnindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/copied.tsx","../src/components/excel/excelfile/excelfilecomponents/cornerindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/dataeditor.tsx","../src/components/excel/excelfile/excelfilecomponents/dataviewer.tsx","../src/components/excel/excelfile/excelfilecomponents/floatingrect.tsx","../src/components/excel/excelfile/excelfilecomponents/headerrow.tsx","../src/components/excel/excelfile/excelfilecomponents/row.tsx","../src/components/excel/excelfile/excelfilecomponents/rowindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/selected.tsx","../src/components/excel/excelfile/excelfilecomponents/spreadsheet.tsx","../src/components/excel/excelfile/excelfilecomponents/table.tsx","../src/components/excel/excelfile/excelfilecomponents/actions.ts","../src/components/excel/excelfile/excelfilecomponents/aremodelsequal.ts","../src/components/excel/excelfile/excelfilecomponents/context.ts","../src/components/excel/excelfile/excelfilecomponents/index.ts","../src/components/excel/excelfile/excelfilecomponents/matrix.ts","../src/components/excel/excelfile/excelfilecomponents/point-range.ts","../src/components/excel/excelfile/excelfilecomponents/point.ts","../src/components/excel/excelfile/excelfilecomponents/reducer.ts","../src/components/excel/excelfile/excelfilecomponents/reducerfunctions.ts","../src/components/excel/excelfile/excelfilecomponents/selection.ts","../src/components/excel/excelfile/excelfilecomponents/types.ts","../src/components/excel/excelfile/excelfilecomponents/use-dispatch.ts","../src/components/excel/excelfile/excelfilecomponents/use-selector.ts","../src/components/excel/excelfile/excelfilecomponents/util.ts","../src/components/excel/excelfile/excelfilecomponents/engine/engine.ts","../src/components/excel/excelfile/excelfilecomponents/engine/formula.ts","../src/components/excel/excelfile/excelfilecomponents/engine/index.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-graph.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-hash.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-set.ts","../src/components/excel/excelfile/excelfilecomponents/typings/fast-formula-parser.d.ts","../src/components/excel/exceltoolbar/exceltoolbar.tsx","../src/components/expandablemenu/expandablemenu.tsx","../src/components/expandablemenu/index.ts","../src/components/expandablemenu/types.ts","../src/components/ff_captcha/recaptcha.tsx","../src/components/ff_captcha/index.ts","../src/components/ff_captcha/types.ts","../src/components/filedropzone/dropzone.tsx","../src/components/filedropzone/filedropzone.tsx","../src/components/filedropzone/filepreview.tsx","../src/components/filedropzone/index.ts","../src/components/filedropzone/types.ts","../src/components/form/form.ts","../src/components/form/forms.tsx","../src/components/form/index.ts","../src/components/form/types.ts","../src/components/gridlayout/gridlayout.tsx","../src/components/gridlayout/index.ts","../src/components/gridlayout/types.ts","../src/components/highlighttext/highlighttext.tsx","../src/components/highlighttext/index.ts","../src/components/highlighttext/types.ts","../src/components/icon/icon.tsx","../src/components/icon/iconlist.ts","../src/components/icon/index.ts","../src/components/icon/types.ts","../src/components/iconbutton/iconbutton.tsx","../src/components/iconbutton/index.ts","../src/components/iconbutton/types.ts","../src/components/iconradiogroup/iconradiogroup.tsx","../src/components/iconradiogroup/index.ts","../src/components/iconradiogroup/type.ts","../src/components/input/input.tsx","../src/components/input/index.ts","../src/components/input/types.ts","../src/components/inputwithdropdown/inputwithdropdown.tsx","../src/components/inputwithdropdown/index.ts","../src/components/inputwithdropdown/types.ts","../src/components/labeledittextfield/labeledittextfield.tsx","../src/components/labeledittextfield/index.ts","../src/components/labeledittextfield/types.ts","../src/components/lazyload/lazyload.ts","../src/components/lazyload/lazyloading.tsx","../src/components/lazyload/index.ts","../src/components/machineinputfield/machineinputfield.tsx","../src/components/machineinputfield/index.ts","../src/components/machineinputfield/types.ts","../src/components/menuoption/menuoption.tsx","../src/components/menuoption/index.ts","../src/components/menuoption/types.ts","../src/components/minimodal/minimodal.tsx","../src/components/minimodal/index.ts","../src/components/minimodal/types.ts","../src/components/modal/modal.tsx","../src/components/modal/index.tsx","../src/components/modal/types.ts","../src/components/moduleschip/modulechip.tsx","../src/components/moduleschip/index.ts","../src/components/moduleschip/types.ts","../src/components/multiselect/dropdown.tsx","../src/components/multiselect/multiselect.tsx","../src/components/multiselect/multiselecttypes.ts","../src/components/multiselect/dropdowntypes.ts","../src/components/multiselect/index.ts","../src/components/nlpinput/nlpinput.tsx","../src/components/nlpinput/index.ts","../src/components/nlpinput/type.tsx","../src/components/nlpinput/components/nlpdropdown/nlpdropdowntype.ts","../src/components/nlpinput/components/nlpdropdown/nlpdropdown.tsx","../src/components/paper/paper.tsx","../src/components/paper/index.ts","../src/components/paper/types.ts","../src/components/radiobutton/radiobutton.tsx","../src/components/radiobutton/index.ts","../src/components/radiobutton/radiobuttontypes.tsx","../src/components/radiogroup/radiogroup.tsx","../src/components/radiogroup/index.ts","../src/components/radiogroup/radiogrouptypes.tsx","../src/components/search/search.tsx","../src/components/search/index.ts","../src/components/search/types.ts","../src/components/select/select.tsx","../src/components/select/index.ts","../src/components/select/types.ts","../src/components/select/components/dropdown.tsx","../src/components/select/components/types.ts","../src/components/sequentialconnectingbranch/sequentialconnectingbranch.tsx","../src/components/sequentialconnectingbranch/index.ts","../src/components/sequentialconnectingbranch/types.ts","../src/components/sequentialconnectingbranch/components/addbrowsermodal/addbrowsermodal.tsx","../src/components/sequentialconnectingbranch/components/addbrowsermodal/types.ts","../src/components/sequentialconnectingbranch/components/branches/branches.tsx","../src/components/sequentialconnectingbranch/components/branches/types.ts","../src/components/sequentialconnectingbranch/components/connectingbranches/connectingbranches.tsx","../src/components/sequentialconnectingbranch/components/connectingbranches/types.ts","../src/components/sequentialconnectingbranch/components/datasetlistmodal/datasetlistmodal.tsx","../src/components/sequentialconnectingbranch/components/datasetlistmodal/types.ts","../src/components/statedropdown/statedropdown.tsx","../src/components/statedropdown/statedropdowntypes.tsx","../src/components/statedropdown/index.ts","../src/components/statusbutton/statusbutton.tsx","../src/components/statusbutton/index.ts","../src/components/statusbutton/types.ts","../src/components/statuscard/statuscard.tsx","../src/components/statuscard/index.ts","../src/components/statuscard/types.ts","../src/components/table/table.tsx","../src/components/table/types.ts","../src/components/table/index.ts","../src/components/tabletree/tabletree.tsx","../src/components/tabletree/data.ts","../src/components/tabletree/index.ts","../src/components/tabs/tabs.tsx","../src/components/tabs/index.ts","../src/components/tabs/types.ts","../src/components/textarea/textarea.tsx","../src/components/textarea/types.ts","../src/components/textarea/index.tsx","../src/components/themeprovider/themeprovider.tsx","../src/components/themeprovider/index.ts","../src/components/themeprovider/types.ts","../src/components/toast/toast.tsx","../src/components/toast/index.ts","../src/components/toast/types.ts","../src/components/toastify/toastify.tsx","../src/components/toastify/index.ts","../src/components/toastify/types.ts","../src/components/toggle/toggle.tsx","../src/components/toggle/index.ts","../src/components/toggle/types.ts","../src/components/tooltip/tooltip.tsx","../src/components/tooltip/index.ts","../src/components/tooltip/types.ts","../src/components/typography/typography.tsx","../src/components/typography/index.ts","../src/components/typography/types.ts","../src/components/variableinput/variableinput.tsx","../src/components/variableinput/index.ts","../src/components/variableinput/types.ts","../src/hooks/useclickoutside.tsx","../src/hooks/usefiledropzone.tsx","../src/hooks/useportalposition.tsx","../src/hooks/usetheme.tsx","../src/hooks/keyboardevents/useesckeyevent.tsx","../src/utils/tablecell/tablecell.ts","../src/utils/checkempty/checkempty.ts","../src/utils/comparearrays/comparearrays.ts","../src/utils/compareobjects/compareobjects.ts","../src/utils/debounce/debounce.ts","../src/utils/downloadfile/savefilefromblob.ts","../src/utils/ffid/ffid.ts","../src/utils/findandinsert/findandinsert.ts","../src/utils/getencrypteddata/getencrypteddata.ts","../src/utils/getextension/getextension.ts","../src/utils/getselectoptionvalue/getselectoptionvalue.ts","../src/utils/getsequentialpayload/getsequentialpayload.ts","../src/utils/getsequentialpayload/types.ts","../src/utils/throttle/throttle.ts","../src/utils/truncatetext/truncatetext.ts"],"version":"5.6.3"}
1
+ {"root":["../src/index.ts","../src/styleguide/colorpalette/colorpalette.tsx","../src/styleguide/colorpalette/colorpalettelist.ts","../src/styleguide/colorpalette/index.ts","../src/styleguide/colorpalette/types.ts","../src/styleguide/typography/typography.tsx","../src/styleguide/typography/typographylist.ts","../src/styleguide/typography/types.ts","../src/assets/utils/functionutils.ts","../src/components/accordion/accordion.tsx","../src/components/accordion/index.ts","../src/components/accordion/types.ts","../src/components/addresourcebutton/addbutton.tsx","../src/components/addresourcebutton/index.ts","../src/components/addresourcebutton/type.ts","../src/components/addresourcebutton/arrowsbutton/arrowsbutton.tsx","../src/components/allprojectsdropdown/allprojectsdropdown.tsx","../src/components/allprojectsdropdown/index.ts","../src/components/allprojectsdropdown/types.ts","../src/components/appheader/appheader.tsx","../src/components/appheader/index.ts","../src/components/appheader/types.ts","../src/components/attachimage/attachimage.tsx","../src/components/attachimage/index.ts","../src/components/attachimage/types.ts","../src/components/attachmentbutton/attachmentbutton.tsx","../src/components/attachmentbutton/index.ts","../src/components/attachmentbutton/types.ts","../src/components/avatar/avatar.tsx","../src/components/avatar/index.ts","../src/components/avatar/types.ts","../src/components/button/button.tsx","../src/components/button/index.ts","../src/components/button/types.ts","../src/components/charts/barchart/barchart.tsx","../src/components/charts/barchart/index.ts","../src/components/charts/barchart/types.ts","../src/components/charts/dashboarddonutchart/dashboarddonutchart.tsx","../src/components/charts/dashboarddonutchart/index.ts","../src/components/charts/dashboarddonutchart/types.ts","../src/components/charts/donutchart/donutchart.tsx","../src/components/charts/donutchart/index.ts","../src/components/charts/donutchart/type.ts","../src/components/charts/iconradialchart/iconradialchart.tsx","../src/components/charts/iconradialchart/index.ts","../src/components/charts/iconradialchart/types.ts","../src/components/charts/linechart/linechart.tsx","../src/components/charts/linechart/index.ts","../src/components/charts/linechart/types.ts","../src/components/charts/multiradialchart/multiradialchart.tsx","../src/components/charts/multiradialchart/index.ts","../src/components/charts/multiradialchart/types.ts","../src/components/charts/piechart/piechart.tsx","../src/components/charts/piechart/index.ts","../src/components/charts/piechart/types.ts","../src/components/charts/radialchart/radialchart.tsx","../src/components/charts/radialchart/index.ts","../src/components/charts/radialchart/types.ts","../src/components/checkbox/checkbox.tsx","../src/components/checkbox/index.ts","../src/components/checkbox/types.ts","../src/components/chip/chip.tsx","../src/components/chip/index.ts","../src/components/chip/types.ts","../src/components/connectingbranch/connectingbranch.tsx","../src/components/connectingbranch/data.ts","../src/components/connectingbranch/index.ts","../src/components/connectingbranch/types.ts","../src/components/connectingbranch/branchcomponents/machineinstances.tsx","../src/components/datepicker/datepicker.tsx","../src/components/datepicker/timepicker.tsx","../src/components/datepicker/index.ts","../src/components/datepicker/types.ts","../src/components/draganddrop/draganddrop.ts","../src/components/draganddrop/draganddroplist.tsx","../src/components/draganddrop/index.ts","../src/components/drawer/drawer.tsx","../src/components/drawer/types.ts","../src/components/drawer/index.ts","../src/components/edittextfield/edittextfield.tsx","../src/components/edittextfield/index.ts","../src/components/edittextfield/types.ts","../src/components/editor/editor.tsx","../src/components/editor/variabledropdown.tsx","../src/components/editor/constants.ts","../src/components/editor/index.ts","../src/components/editor/types.ts","../src/components/excel/types.ts","../src/components/excel/index.ts","../src/components/excel/colorbarselector/colorbarselector.tsx","../src/components/excel/excelcontextmenu/excelcontextmenu.tsx","../src/components/excel/excelfile/excelfile.tsx","../src/components/excel/excelfile/excelfilecomponents/activecell.tsx","../src/components/excel/excelfile/excelfilecomponents/cell.tsx","../src/components/excel/excelfile/excelfilecomponents/columnindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/copied.tsx","../src/components/excel/excelfile/excelfilecomponents/cornerindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/dataeditor.tsx","../src/components/excel/excelfile/excelfilecomponents/dataviewer.tsx","../src/components/excel/excelfile/excelfilecomponents/floatingrect.tsx","../src/components/excel/excelfile/excelfilecomponents/headerrow.tsx","../src/components/excel/excelfile/excelfilecomponents/row.tsx","../src/components/excel/excelfile/excelfilecomponents/rowindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/selected.tsx","../src/components/excel/excelfile/excelfilecomponents/spreadsheet.tsx","../src/components/excel/excelfile/excelfilecomponents/table.tsx","../src/components/excel/excelfile/excelfilecomponents/actions.ts","../src/components/excel/excelfile/excelfilecomponents/aremodelsequal.ts","../src/components/excel/excelfile/excelfilecomponents/context.ts","../src/components/excel/excelfile/excelfilecomponents/index.ts","../src/components/excel/excelfile/excelfilecomponents/matrix.ts","../src/components/excel/excelfile/excelfilecomponents/point-range.ts","../src/components/excel/excelfile/excelfilecomponents/point.ts","../src/components/excel/excelfile/excelfilecomponents/reducer.ts","../src/components/excel/excelfile/excelfilecomponents/reducerfunctions.ts","../src/components/excel/excelfile/excelfilecomponents/selection.ts","../src/components/excel/excelfile/excelfilecomponents/types.ts","../src/components/excel/excelfile/excelfilecomponents/use-dispatch.ts","../src/components/excel/excelfile/excelfilecomponents/use-selector.ts","../src/components/excel/excelfile/excelfilecomponents/util.ts","../src/components/excel/excelfile/excelfilecomponents/engine/engine.ts","../src/components/excel/excelfile/excelfilecomponents/engine/formula.ts","../src/components/excel/excelfile/excelfilecomponents/engine/index.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-graph.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-hash.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-set.ts","../src/components/excel/excelfile/excelfilecomponents/typings/fast-formula-parser.d.ts","../src/components/excel/exceltoolbar/exceltoolbar.tsx","../src/components/expandablemenu/expandablemenu.tsx","../src/components/expandablemenu/index.ts","../src/components/expandablemenu/types.ts","../src/components/ff_captcha/recaptcha.tsx","../src/components/ff_captcha/index.ts","../src/components/ff_captcha/types.ts","../src/components/filedropzone/dropzone.tsx","../src/components/filedropzone/filedropzone.tsx","../src/components/filedropzone/filepreview.tsx","../src/components/filedropzone/index.ts","../src/components/filedropzone/types.ts","../src/components/form/form.ts","../src/components/form/forms.tsx","../src/components/form/index.ts","../src/components/form/types.ts","../src/components/gridlayout/gridlayout.tsx","../src/components/gridlayout/index.ts","../src/components/gridlayout/types.ts","../src/components/highlighttext/highlighttext.tsx","../src/components/highlighttext/index.ts","../src/components/highlighttext/types.ts","../src/components/icon/icon.tsx","../src/components/icon/iconlist.ts","../src/components/icon/index.ts","../src/components/icon/types.ts","../src/components/iconbutton/iconbutton.tsx","../src/components/iconbutton/index.ts","../src/components/iconbutton/types.ts","../src/components/iconradiogroup/iconradiogroup.tsx","../src/components/iconradiogroup/index.ts","../src/components/iconradiogroup/type.ts","../src/components/input/input.tsx","../src/components/input/index.ts","../src/components/input/types.ts","../src/components/inputwithdropdown/inputwithdropdown.tsx","../src/components/inputwithdropdown/index.ts","../src/components/inputwithdropdown/types.ts","../src/components/labeledittextfield/labeledittextfield.tsx","../src/components/labeledittextfield/index.ts","../src/components/labeledittextfield/types.ts","../src/components/lazyload/lazyload.ts","../src/components/lazyload/lazyloading.tsx","../src/components/lazyload/index.ts","../src/components/machineinputfield/machineinputfield.tsx","../src/components/machineinputfield/index.ts","../src/components/machineinputfield/types.ts","../src/components/menuoption/menuoption.tsx","../src/components/menuoption/index.ts","../src/components/menuoption/types.ts","../src/components/minimodal/minimodal.tsx","../src/components/minimodal/index.ts","../src/components/minimodal/types.ts","../src/components/modal/modal.tsx","../src/components/modal/index.tsx","../src/components/modal/types.ts","../src/components/moduleschip/modulechip.tsx","../src/components/moduleschip/index.ts","../src/components/moduleschip/types.ts","../src/components/multiselect/dropdown.tsx","../src/components/multiselect/multiselect.tsx","../src/components/multiselect/multiselecttypes.ts","../src/components/multiselect/dropdowntypes.ts","../src/components/multiselect/index.ts","../src/components/nlpinput/nlpinput.tsx","../src/components/nlpinput/index.ts","../src/components/nlpinput/type.tsx","../src/components/nlpinput/components/nlpdropdown/nlpdropdowntype.ts","../src/components/nlpinput/components/nlpdropdown/nlpdropdown.tsx","../src/components/paper/paper.tsx","../src/components/paper/index.ts","../src/components/paper/types.ts","../src/components/radiobutton/radiobutton.tsx","../src/components/radiobutton/index.ts","../src/components/radiobutton/radiobuttontypes.tsx","../src/components/radiogroup/radiogroup.tsx","../src/components/radiogroup/index.ts","../src/components/radiogroup/radiogrouptypes.tsx","../src/components/search/search.tsx","../src/components/search/index.ts","../src/components/search/types.ts","../src/components/select/select.tsx","../src/components/select/index.ts","../src/components/select/types.ts","../src/components/select/components/dropdown.tsx","../src/components/select/components/types.ts","../src/components/sequentialconnectingbranch/sequentialconnectingbranch.tsx","../src/components/sequentialconnectingbranch/index.ts","../src/components/sequentialconnectingbranch/types.ts","../src/components/sequentialconnectingbranch/components/addbrowsermodal/addbrowsermodal.tsx","../src/components/sequentialconnectingbranch/components/addbrowsermodal/types.ts","../src/components/sequentialconnectingbranch/components/branches/branches.tsx","../src/components/sequentialconnectingbranch/components/branches/types.ts","../src/components/sequentialconnectingbranch/components/connectingbranches/connectingbranches.tsx","../src/components/sequentialconnectingbranch/components/connectingbranches/types.ts","../src/components/sequentialconnectingbranch/components/datasetlistmodal/datasetlistmodal.tsx","../src/components/sequentialconnectingbranch/components/datasetlistmodal/types.ts","../src/components/statedropdown/statedropdown.tsx","../src/components/statedropdown/statedropdowntypes.tsx","../src/components/statedropdown/index.ts","../src/components/statusbutton/statusbutton.tsx","../src/components/statusbutton/index.ts","../src/components/statusbutton/types.ts","../src/components/statuscard/statuscard.tsx","../src/components/statuscard/index.ts","../src/components/statuscard/types.ts","../src/components/table/table.tsx","../src/components/table/types.ts","../src/components/table/index.ts","../src/components/tabletree/tabletree.tsx","../src/components/tabletree/data.ts","../src/components/tabletree/index.ts","../src/components/tabs/tabs.tsx","../src/components/tabs/index.ts","../src/components/tabs/types.ts","../src/components/textarea/textarea.tsx","../src/components/textarea/types.ts","../src/components/textarea/index.tsx","../src/components/themeprovider/themeprovider.tsx","../src/components/themeprovider/index.ts","../src/components/themeprovider/types.ts","../src/components/toast/toast.tsx","../src/components/toast/index.ts","../src/components/toast/types.ts","../src/components/toastify/toastify.tsx","../src/components/toastify/index.ts","../src/components/toastify/types.ts","../src/components/toggle/toggle.tsx","../src/components/toggle/index.ts","../src/components/toggle/types.ts","../src/components/toggleswitch/toggleswitch.tsx","../src/components/toggleswitch/index.ts","../src/components/tooltip/tooltip.tsx","../src/components/tooltip/index.ts","../src/components/tooltip/types.ts","../src/components/typography/typography.tsx","../src/components/typography/index.ts","../src/components/typography/types.ts","../src/components/variableinput/variableinput.tsx","../src/components/variableinput/index.ts","../src/components/variableinput/types.ts","../src/hooks/useclickoutside.tsx","../src/hooks/usefiledropzone.tsx","../src/hooks/useportalposition.tsx","../src/hooks/usetheme.tsx","../src/hooks/keyboardevents/useesckeyevent.tsx","../src/utils/tablecell/tablecell.ts","../src/utils/checkempty/checkempty.ts","../src/utils/comparearrays/comparearrays.ts","../src/utils/compareobjects/compareobjects.ts","../src/utils/debounce/debounce.ts","../src/utils/downloadfile/savefilefromblob.ts","../src/utils/ffid/ffid.ts","../src/utils/findandinsert/findandinsert.ts","../src/utils/getencrypteddata/getencrypteddata.ts","../src/utils/getextension/getextension.ts","../src/utils/getselectoptionvalue/getselectoptionvalue.ts","../src/utils/getsequentialpayload/getsequentialpayload.ts","../src/utils/getsequentialpayload/types.ts","../src/utils/throttle/throttle.ts","../src/utils/truncatetext/truncatetext.ts"],"version":"5.6.3"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pixel-react",
3
3
  "description": "Great for pixel-perfect, design-focused components in React",
4
- "version": "1.4.3",
4
+ "version": "1.4.4",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.esm.js",
7
7
  "types": "lib/index.d.ts",
@@ -17,15 +17,15 @@
17
17
  "@rollup/plugin-node-resolve": "^15.2.3",
18
18
  "@rollup/plugin-typescript": "^12.1.1",
19
19
  "@rollup/plugin-url": "^8.0.2",
20
- "@storybook/addon-docs": "^8.4.2",
21
- "@storybook/addon-essentials": "^8.4.2",
22
- "@storybook/addon-interactions": "^8.4.2",
23
- "@storybook/addon-links": "^8.4.2",
24
- "@storybook/addon-onboarding": "^8.4.2",
25
- "@storybook/blocks": "^8.4.2",
26
- "@storybook/react": "^8.4.2",
27
- "@storybook/react-vite": "^8.4.2",
28
- "@storybook/test": "^8.4.2",
20
+ "@storybook/addon-docs": "^8.4.5",
21
+ "@storybook/addon-essentials": "^8.4.5",
22
+ "@storybook/addon-interactions": "^8.4.5",
23
+ "@storybook/addon-links": "^8.4.5",
24
+ "@storybook/addon-onboarding": "^8.4.5",
25
+ "@storybook/blocks": "^8.4.5",
26
+ "@storybook/react": "^8.4.5",
27
+ "@storybook/react-vite": "^8.4.5",
28
+ "@storybook/test": "^8.4.5",
29
29
  "@types/react": "^18.3.12",
30
30
  "@types/react-dom": "^18.3.1",
31
31
  "@types/react-google-recaptcha": "^2.1.9",
@@ -39,7 +39,7 @@
39
39
  "rollup-plugin-peer-deps-external": "^2.2.4",
40
40
  "rollup-plugin-postcss": "^4.0.2",
41
41
  "sass": "^1.80.6",
42
- "storybook": "^8.3.4",
42
+ "storybook": "^8.4.5",
43
43
  "storybook-addon-theme-provider": "^0.2.6",
44
44
  "typescript": "^5.6.3",
45
45
  "vite": "^5.4.10"
@@ -194,6 +194,16 @@ const ColorPalette: ColorPaletteType = [
194
194
  { name: 'Card Warning Status BG Color', colorCode: '#e2750f', variable: '--ff-card-warning-status-bg-color' },
195
195
  { name: 'Card Skipped Status BG Color', colorCode: '#a83fc4', variable: '--ff-card-skipped-status-bg-color' },
196
196
  { name: 'Card Flaky Status BG Color', colorCode: '#3f5ac4', variable: '--ff-card-flaky-status-bg-color' },
197
+ {
198
+ name: 'Search filed color',
199
+ colorCode: '#F7ECF8',
200
+ variable: '--ff-search-field-hover-color',
201
+ },
202
+ {
203
+ name: 'Search filed background color',
204
+ colorCode: '#F7ECF8',
205
+ variable: '--ff-search-filed-bg-color',
206
+ },
197
207
  ];
198
208
 
199
209
  export default ColorPalette;
@@ -5,6 +5,7 @@ $base-theme: (
5
5
  text-color: #1e161f,
6
6
  description-text: #7a7a7a,
7
7
  click-able-text-color: #71347b,
8
+ custom-table-header-bg-color:#EFE1F9,
8
9
  icons-default-color: #71347b,
9
10
  border-color: #f0e7f4,
10
11
  disable-color: #71347b80,
@@ -28,37 +29,25 @@ $base-theme: (
28
29
  overlay-bg: #1e161f1a,
29
30
  chip-fill-color: #f9d5ff,
30
31
  chip-text-color: #1e161f,
31
- file-drop-zone-default-fill-color: #71347b1a,
32
- file-drop-zone-default-text-color: #1e161f,
33
- file-drop-zone-selected-fill-color: #71347b33,
34
- file-drop-zone-selected-text-color: #1e161f,
35
32
  icon-color: #71347b,
36
33
  default-icon-color: #a3a3a3,
37
34
  tree-connecting-lines-color: #d7b5e3,
38
- primary-button-color:
39
- linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%),
40
- primary-button-hover:
41
- linear-gradient(179.06deg, #8d3b9a 3.49%, #781f86 99.22%),
35
+ primary-button-color: linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%),
36
+ primary-button-hover: linear-gradient(179.06deg, #8d3b9a 3.49%, #781f86 99.22%),
42
37
  primary-button-disable: linear-gradient(180deg, #46164d 0%, #71347b 100%),
43
38
  primary-button-text-color: #ffffff,
44
39
  primary-button-border: linear-gradient(180deg, #46164d 3.04%, #71347b 100%),
45
- secondary-button-color-text:
46
- linear-gradient(179.06deg, #71347b 3.49%, #46164d 99.22%),
40
+ secondary-button-color-text: linear-gradient(179.06deg, #71347b 3.49%, #46164d 99.22%),
47
41
  secondary-button-border: linear-gradient(180deg, #46164d 3.04%, #71347b 100%),
48
42
  secondary-button-text-color: #46164d,
49
- secondary-button-hover:
50
- linear-gradient(179.06deg, #71347b0d 3.49%, #46164d0d 99.22%),
51
- tertiary-button-color:
52
- linear-gradient(179.06deg, #71347b0d 3.49%, #46164d0d 99.22%),
53
- tertiary-button-hover:
54
- linear-gradient(179.06deg, #71347b1a 3.49%, #46164d1a 99.22%),
43
+ secondary-button-hover: linear-gradient(179.06deg, #71347b0d 3.49%, #46164d0d 99.22%),
44
+ tertiary-button-color: linear-gradient(179.06deg, #71347b0d 3.49%, #46164d0d 99.22%),
45
+ tertiary-button-hover: linear-gradient(179.06deg, #71347b1a 3.49%, #46164d1a 99.22%),
55
46
  delete-button-color: linear-gradient(179.06deg, #e42525 3.49%, #c90000 99.22%),
56
47
  delete-button-border: linear-gradient(180deg, #a90707 3.04%, #e42525 100%),
57
48
  delete-button-hover: linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%),
58
- delete-button-disable:
59
- linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%),
60
- warning-button-color:
61
- linear-gradient(179.06deg, #ffc600 3.49%, #ffc600 99.22%),
49
+ delete-button-disable: linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%),
50
+ warning-button-color: linear-gradient(179.06deg, #ffc600 3.49%, #ffc600 99.22%),
62
51
  warning-button-border: linear-gradient(180deg, #eeba08 3.04%, #f1bc04 100%),
63
52
  error: #e42525,
64
53
  drawer-title-color: #252c37,
@@ -200,8 +189,7 @@ $base-theme: (
200
189
  ff-connecting-branch-scope-color: #079455,
201
190
  ff-connecting-branch-delete-color: #e42525,
202
191
  ff-app-header-menu-border-bottom-color: #ffffff,
203
- ff-app-header-submenu-border-bottom-color:
204
- linear-gradient(90deg, #592f7c 0%, #741ebb 100%),
192
+ ff-app-header-submenu-border-bottom-color: linear-gradient(90deg, #592f7c 0%, #741ebb 100%),
205
193
  ff-delete-button-attachment: #a91224,
206
194
  email-table-border-color: #959595,
207
195
 
@@ -231,13 +219,19 @@ $base-theme: (
231
219
  ff-card-warning-status-bg-color: #e2750f,
232
220
  ff-card-skipped-status-bg-color: #a83fc4,
233
221
  ff-card-flaky-status-bg-color: #3f5ac4,
222
+ ff-toggle-switch-off-color:#4B494C,
223
+ ff-toggle-switch-shadow-color:#57575780,
224
+
234
225
 
235
226
  //ExcelSheet
236
227
  excel-sheet-button-color: #e9b5ff,
237
228
  icon-hover-color: #f7ecf8,
229
+ ff-search-icon-hover-color:#F7ECF8,
230
+ ff-search-filed-bg-color:#ffffff,
238
231
  );
232
+
239
233
  :root {
240
234
  @each $key, $value in $base-theme {
241
235
  --#{$key}: #{$value};
242
236
  }
243
- }
237
+ }
@@ -4,6 +4,7 @@ $dark-theme: (
4
4
  text-color: #e8e0e9,
5
5
  description-text: #d9d9d9,
6
6
  click-able-text-color: #e8e0e9,
7
+ custom-table-header-bg-color:#EFE1F9,
7
8
  icons-default-color: #e8e0e9,
8
9
  border-color: #333234,
9
10
  disable-color: #71347b80,
@@ -27,45 +28,28 @@ $dark-theme: (
27
28
  overlay-bg: #12121299,
28
29
  chip-fill-color: #f9d5ff,
29
30
  chip-text-color: #1e161f,
30
- file-drop-zone-default-fill-color: #71347b1a,
31
- file-drop-zone-default-text-color: #1e161f,
32
- file-drop-zone-selected-fill-color: #71347b33,
33
- file-drop-zone-selected-text-color: #1e161f,
34
31
  icon-color: #71347b,
35
32
  tree-connecting-lines-color: #d7b5e3,
36
- primary-button-color:
37
- linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%),
38
- primary-button-hover:
39
- linear-gradient(188.79deg, #7c4685 2.94%, #582d5f 93.09%),
40
- primary-button-disable:
41
- linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%),
33
+ primary-button-color: linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%),
34
+ primary-button-hover: linear-gradient(188.79deg, #7c4685 2.94%, #582d5f 93.09%),
35
+ primary-button-disable: linear-gradient(188.79deg, #71347b 2.94%, #46164d 93.09%),
42
36
  primary-button-text-color: #ffffff,
43
37
  primary-button-border: linear-gradient(180deg, #46164d 3.04%, #71347b 100%),
44
- secondary-button-color-text:
45
- linear-gradient(179.06deg, #71347b 3.49%, #46164d 99.22%),
38
+ secondary-button-color-text: linear-gradient(179.06deg, #71347b 3.49%, #46164d 99.22%),
46
39
  secondary-button-border: linear-gradient(360deg, #46164d 0%, #71347b 100%),
47
40
  secondary-button-text-color: #71347b,
48
- secondary-button-hover:
49
- linear-gradient(179.06deg, #71347b0d 3.49%, #46164d0d 99.22%),
50
- tertiary-button-color:
51
- linear-gradient(
52
- 180deg,
53
- rgba(70, 22, 77, 0.05) 0%,
54
- rgba(113, 52, 123, 0.05) 100%
55
- ),
56
- tertiary-button-hover:
57
- linear-gradient(
58
- 180deg,
59
- rgba(70, 22, 77, 0.1) 0%,
60
- rgba(113, 52, 123, 0.1) 100%
61
- ),
41
+ secondary-button-hover: linear-gradient(179.06deg, #71347b0d 3.49%, #46164d0d 99.22%),
42
+ tertiary-button-color: linear-gradient(180deg,
43
+ rgba(70, 22, 77, 0.05) 0%,
44
+ rgba(113, 52, 123, 0.05) 100%),
45
+ tertiary-button-hover: linear-gradient(180deg,
46
+ rgba(70, 22, 77, 0.1) 0%,
47
+ rgba(113, 52, 123, 0.1) 100%),
62
48
  delete-button-color: linear-gradient(179.06deg, #e42525 3.49%, #c90000 99.22%),
63
49
  delete-button-border: linear-gradient(180deg, #a90707 3.04%, #e42525 100%),
64
50
  delete-button-hover: linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%),
65
- delete-button-disable:
66
- linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%),
67
- warning-button-color:
68
- linear-gradient(179.06deg, #ffc600 3.49%, #ffc600 99.22%),
51
+ delete-button-disable: linear-gradient(179.06deg, #e95151 3.49%, #d43434 99.22%),
52
+ warning-button-color: linear-gradient(179.06deg, #ffc600 3.49%, #ffc600 99.22%),
69
53
  warning-button-border: linear-gradient(180deg, #eeba08 3.04%, #f1bc04 100%),
70
54
  drawer-title-color: #252c37,
71
55
  toast-msg-icon-bg: linear-gradient(180deg, #079455 0%, #00693a 100%),
@@ -76,14 +60,13 @@ $dark-theme: (
76
60
  ff-header-submenu-text-color: #666468,
77
61
  ff-header-submenu-highlight-text-color: #170328,
78
62
 
79
- // TODO:: Need to change the color code values of below 7 color (N/A in DS)
80
63
  default-icon-color: #a3a3a3,
81
64
  expandable-menu-default-bg: #fdfaff,
82
65
  expandable-menu-option-bg: #610b861a,
83
- file-dropzone-default-color: #71347b1a,
84
- file-dropzone-selected-color: #71347b33,
85
- file-details-container-shadow: #1e161f29,
86
- file-details-bg: #ffffff,
66
+ file-dropzone-default-color: #823c8d1a,
67
+ file-dropzone-selected-color: #823c8d33,
68
+ file-details-container-shadow: #fffcff99,
69
+ file-details-bg: #0d0d0d,
87
70
  ff-mini-modal-border: #ffffff,
88
71
  ff-mini-modal-box-shadow: #3713553d,
89
72
  ff-mini-modal-arrow-shadow: #00000040,
@@ -205,8 +188,7 @@ $dark-theme: (
205
188
  delete-icon-color: #e42525,
206
189
 
207
190
  ff-app-header-menu-border-bottom-color: #ffffff,
208
- ff-app-header-submenu-border-bottom-color:
209
- linear-gradient(90deg, #592f7c 0%, #741ebb 100%),
191
+ ff-app-header-submenu-border-bottom-color: linear-gradient(90deg, #592f7c 0%, #741ebb 100%),
210
192
  table-header-text-color: #252c37,
211
193
  table-column-text-color: #200624,
212
194
  ff-delete-button-attachment: #a91224,
@@ -233,9 +215,14 @@ $dark-theme: (
233
215
  ff-card-warning-status-bg-color: #e2750f,
234
216
  ff-card-skipped-status-bg-color: #a83fc4,
235
217
  ff-card-flaky-status-bg-color: #3f5ac4,
218
+ ff-toggle-switch-off-color:#4B494C,
219
+ ff-toggle-switch-shadow-color:#57575780,
220
+ ff-search-field-hover-color:#F7ECF8,
221
+ ff-search-filed-bg-color:#ffffff
236
222
  );
223
+
237
224
  :root {
238
225
  @each $key, $value in $dark-theme {
239
226
  --#{$key}: #{$value};
240
227
  }
241
- }
228
+ }
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.42445 11.0946L2.65445 10.4296H4.04445L4.27445 11.0946H5.01445L3.75945 7.59961H2.94445L1.68945 11.0946H2.42445ZM3.34945 8.40961L3.85445 9.86961H2.84445L3.34945 8.40961ZM7.89355 9.20961C7.98355 9.04628 8.02855 8.87128 8.02855 8.68461C8.02855 8.47794 7.98022 8.29294 7.88355 8.12961C7.79022 7.96628 7.64855 7.83794 7.45855 7.74461C7.26855 7.65128 7.03855 7.60461 6.76855 7.60461H5.48355V11.0946H6.18355V9.75461H6.76855C7.05522 9.75461 7.29189 9.70461 7.47855 9.60461C7.66855 9.50461 7.80689 9.37294 7.89355 9.20961ZM7.16855 9.05961C7.07522 9.14628 6.93189 9.18961 6.73855 9.18961H6.18355V8.17461H6.73855C7.11855 8.17461 7.30855 8.34461 7.30855 8.68461C7.30855 8.84461 7.26189 8.96961 7.16855 9.05961ZM9.22555 9.53961L10.4955 11.0946H11.3805L9.90055 9.33461L11.3405 7.60461H10.4955L9.22555 9.16961V7.60461H8.52555V11.0946H9.22555V9.53961Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.04228 0H2.61603C1.67718 0 0.913086 0.764127 0.913086 1.70291V14.2971C0.913086 15.2358 1.67718 16 2.61603 16H11.3843C12.3226 16 13.0867 15.2359 13.0867 14.2971V4.03033L9.04228 0ZM11.3843 14.9566H2.61603C2.25251 14.9566 1.95647 14.6611 1.95647 14.2971V1.70291C1.95647 1.33943 2.25251 1.04391 2.61603 1.04391L3.43664 1.04318V1.79755C3.43664 1.9448 3.5559 2.06406 3.70311 2.06406H4.70856V3.17962H3.70311C3.5559 3.17962 3.43664 3.29889 3.43664 3.4461V4.02877C3.43664 4.17602 3.5559 4.29518 3.70311 4.29518H4.70856V5.41078H3.70311C3.5559 5.41078 3.43664 5.53005 3.43664 5.67726V6.25992C3.43664 6.40717 3.5559 6.52634 3.70311 6.52634H4.70856V7.37548C4.70856 7.52273 4.82783 7.64193 4.97508 7.64193H6.44525C6.5922 7.64193 6.71147 7.52269 6.71147 7.37548V6.79285C6.71147 6.64564 6.5922 6.52634 6.44525 6.52634H5.43954V5.41078H6.44529C6.59223 5.41078 6.7115 5.29154 6.7115 5.14433V4.5617C6.7115 4.41449 6.59223 4.29518 6.44529 4.29518H5.43954V3.17962H6.44529C6.59223 3.17962 6.7115 3.06039 6.7115 2.91318V2.33058C6.7115 2.18333 6.59223 2.0641 6.44529 2.0641H5.43954V1.04103L8.65212 1.03767V3.2683C8.65212 3.92049 9.18089 4.44983 9.83308 4.44983L12.0187 4.44359L12.0433 14.2971C12.0433 14.6611 11.7478 14.9566 11.3843 14.9566Z" fill="currentColor"/>
3
+ <path d="M5.71008 10.0144V8.65095C5.71008 8.50397 5.59088 8.38477 5.4439 8.38477H4.70437C4.55739 8.38477 4.43815 8.504 4.43815 8.65095V10.0142L4.02682 11.2226C3.91173 11.5594 3.96695 11.9336 4.17433 12.2236C4.38171 12.5131 4.71797 12.686 5.07412 12.686C5.43033 12.686 5.76663 12.5131 5.97401 12.2236C6.18138 11.9336 6.23654 11.5594 6.12148 11.2229L5.71008 10.0144ZM5.53828 11.9119C5.3249 12.2106 4.82334 12.2106 4.60992 11.9119C4.50297 11.7623 4.47449 11.5694 4.5336 11.3955L4.67165 10.9901H5.47656L5.61464 11.3957C5.67378 11.5694 5.64521 11.7623 5.53828 11.9119Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.21242 8.42371C2.05909 8.69371 1.98242 9.00038 1.98242 9.34371C1.98242 9.68704 2.05909 9.99371 2.21242 10.2637C2.36909 10.5337 2.58076 10.7454 2.84742 10.8987C3.11742 11.0487 3.41909 11.1237 3.75242 11.1237C4.14576 11.1237 4.48742 11.0254 4.77742 10.8287C5.07076 10.6287 5.27576 10.3504 5.39242 9.99371H4.58742C4.50742 10.1604 4.39409 10.287 4.24742 10.3737C4.10409 10.457 3.93742 10.4987 3.74742 10.4987C3.54409 10.4987 3.36242 10.452 3.20242 10.3587C3.04576 10.262 2.92242 10.127 2.83242 9.95371C2.74576 9.77704 2.70242 9.57371 2.70242 9.34371C2.70242 9.11038 2.74576 8.90704 2.83242 8.73371C2.92242 8.56038 3.04576 8.42704 3.20242 8.33371C3.36242 8.23704 3.54409 8.18871 3.74742 8.18871C3.93742 8.18871 4.10409 8.23038 4.24742 8.31371C4.39409 8.39704 4.50742 8.52204 4.58742 8.68871H5.39242C5.27576 8.33538 5.07076 8.05871 4.77742 7.85871C4.48409 7.65871 4.14242 7.55871 3.75242 7.55871C3.41909 7.55871 3.11742 7.63538 2.84742 7.78871C2.58076 7.93871 2.36909 8.15038 2.21242 8.42371ZM6.53531 11.0037C6.73198 11.087 6.95198 11.1287 7.19531 11.1287C7.45198 11.1287 7.67365 11.082 7.86031 10.9887C8.04698 10.892 8.18865 10.7637 8.28531 10.6037C8.38198 10.4437 8.43031 10.2704 8.43031 10.0837C8.43031 9.86704 8.37865 9.69204 8.27531 9.55871C8.17198 9.42538 8.04865 9.32538 7.90531 9.25871C7.76198 9.19204 7.57698 9.12538 7.35031 9.05871C7.18365 9.00871 7.05365 8.96538 6.96031 8.92871C6.87031 8.88871 6.79365 8.83871 6.73031 8.77871C6.67031 8.71538 6.64031 8.63704 6.64031 8.54371C6.64031 8.41038 6.68031 8.30871 6.76031 8.23871C6.84365 8.16871 6.95365 8.13371 7.09031 8.13371C7.24698 8.13371 7.37198 8.17371 7.46531 8.25371C7.56198 8.33038 7.61365 8.42871 7.62031 8.54871H8.39031C8.36698 8.23538 8.24198 7.99204 8.01531 7.81871C7.79198 7.64204 7.50031 7.55371 7.14031 7.55371C6.90031 7.55371 6.68698 7.59538 6.50031 7.67871C6.31365 7.75871 6.16865 7.87538 6.06531 8.02871C5.96198 8.18204 5.91031 8.36204 5.91031 8.56871C5.91031 8.78871 5.96031 8.96538 6.06031 9.09871C6.16365 9.22871 6.28531 9.32704 6.42531 9.39371C6.56865 9.45704 6.75365 9.52204 6.98031 9.58871C7.14698 9.63538 7.27698 9.67871 7.37031 9.71871C7.46698 9.75538 7.54698 9.80704 7.61031 9.87371C7.67365 9.94038 7.70531 10.0254 7.70531 10.1287C7.70531 10.2554 7.65865 10.3587 7.56531 10.4387C7.47198 10.5154 7.34365 10.5537 7.18031 10.5537C7.02031 10.5537 6.89365 10.512 6.80031 10.4287C6.71031 10.3454 6.66031 10.232 6.65031 10.0887H5.90031C5.90365 10.302 5.96198 10.487 6.07531 10.6437C6.18865 10.8004 6.34198 10.9204 6.53531 11.0037ZM10.8922 11.0937L12.1722 7.60371H11.4272L10.4722 10.3787L9.51219 7.60371H8.76219L10.0422 11.0937H10.8922Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 14H11.5556V11.6667H0V14ZM0 8.16667H8.88889V5.83333H0V8.16667ZM0 0V2.33333H11.5556V0H0ZM16 11.1883L12.8178 7L16 2.81167L14.7467 1.16667L10.3022 7L14.7467 12.8333L16 11.1883Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0.296875 0H15.7023V3.77095H12.9706V2.73171H6.14841L10.5613 8L6.14841 13.2683H12.9707V12.2291H15.7024V16H0.296875L6.99784 8L0.296875 0Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.87449 8.3684C5.01449 8.44507 5.12449 8.55673 5.20449 8.7034H6.00949C5.89949 8.35673 5.69949 8.0884 5.40949 7.8984C5.11949 7.70507 4.77783 7.6084 4.38449 7.6084C4.05116 7.6084 3.74783 7.68507 3.47449 7.8384C3.20449 7.9884 2.99116 8.20006 2.83449 8.4734C2.68116 8.7434 2.60449 9.05007 2.60449 9.3934C2.60449 9.73673 2.68116 10.0434 2.83449 10.3134C2.99116 10.5834 3.20449 10.7951 3.47449 10.9484C3.74783 11.0984 4.05283 11.1734 4.38949 11.1734C4.68949 11.1734 4.95949 11.1117 5.19949 10.9884C5.44283 10.8617 5.64116 10.6951 5.79449 10.4884C5.94783 10.2817 6.04783 10.0567 6.09449 9.8134V9.2034H4.20449V9.7384H5.40449C5.35116 9.99173 5.23949 10.1901 5.06949 10.3334C4.89949 10.4734 4.68116 10.5434 4.41449 10.5434C4.19783 10.5434 4.00783 10.4967 3.84449 10.4034C3.68116 10.3101 3.55283 10.1767 3.45949 10.0034C3.36949 9.83007 3.32449 9.62673 3.32449 9.3934C3.32449 9.16673 3.36949 8.96673 3.45949 8.7934C3.54949 8.62007 3.67449 8.48673 3.83449 8.3934C3.99449 8.30007 4.17783 8.2534 4.38449 8.2534C4.57116 8.2534 4.73449 8.29173 4.87449 8.3684ZM7.31238 11.1434V7.6534H6.61238V11.1434H7.31238ZM10.159 8.2184V7.6534H8.00398V11.1434H8.70398V9.6684H9.81898V9.1134H8.70398V8.2184H10.159Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.93514 10.6865V7.89453H3.37514V9.04253H2.17914V7.89453H1.61914V10.6865H2.17914V9.49853H3.37514V10.6865H3.93514ZM6.38633 8.34653V7.89453H4.33833V8.34653H5.08233V10.6865H5.64233V8.34653H6.38633ZM9.83892 10.6865V7.89453H9.20692L8.31892 9.97053L7.43092 7.89453H6.79492V10.6865H7.35492V8.87053L8.10692 10.6865H8.53092L9.27892 8.87053V10.6865H9.83892ZM11.8726 10.2425H10.9526V7.89453H10.3926V10.6865H11.8726V10.2425Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.69805 11.0945V7.60449H2.99805V11.0945H3.69805ZM6.79965 9.20949C6.88965 9.04616 6.93465 8.87116 6.93465 8.68449C6.93465 8.47783 6.88631 8.29283 6.78965 8.12949C6.69631 7.96616 6.55465 7.83783 6.36465 7.74449C6.17465 7.65116 5.94465 7.60449 5.67465 7.60449H4.38965V11.0945H5.08965V9.75449H5.67465C5.96131 9.75449 6.19798 9.70449 6.38465 9.60449C6.57465 9.50449 6.71298 9.37283 6.79965 9.20949ZM6.07465 9.05949C5.98131 9.14616 5.83798 9.18949 5.64465 9.18949H5.08965V8.17449H5.64465C6.02465 8.17449 6.21465 8.34449 6.21465 8.68449C6.21465 8.84449 6.16798 8.96949 6.07465 9.05949ZM8.13164 9.53949L9.40164 11.0945H10.2866L8.80664 9.33449L10.2466 7.60449H9.40164L8.13164 9.16949V7.60449H7.43164V11.0945H8.13164V9.53949Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.0418 10.0546V7.60457H3.3368V10.0546C3.3368 10.1946 3.30346 10.3046 3.2368 10.3846C3.17013 10.4646 3.07346 10.5046 2.9468 10.5046C2.8168 10.5046 2.7168 10.4629 2.6468 10.3796C2.58013 10.2962 2.54513 10.1796 2.5418 10.0296H1.8418C1.8418 10.3762 1.94346 10.6462 2.1468 10.8396C2.35346 11.0329 2.62346 11.1296 2.9568 11.1296C3.2868 11.1296 3.55013 11.0362 3.7468 10.8496C3.94346 10.6596 4.0418 10.3946 4.0418 10.0546ZM7.26836 9.20957C7.35836 9.04624 7.40336 8.87124 7.40336 8.68457C7.40336 8.4779 7.35503 8.2929 7.25836 8.12957C7.16503 7.96624 7.02336 7.8379 6.83336 7.74457C6.64336 7.65124 6.41336 7.60457 6.14336 7.60457H4.85836V11.0946H5.55836V9.75457H6.14336C6.43003 9.75457 6.66669 9.70457 6.85336 9.60457C7.04336 9.50457 7.18169 9.3729 7.26836 9.20957ZM6.54336 9.05957C6.45003 9.14624 6.30669 9.18957 6.11336 9.18957H5.55836V8.17457H6.11336C6.49336 8.17457 6.68336 8.34457 6.68336 8.68457C6.68336 8.84457 6.63669 8.96957 6.54336 9.05957ZM10.0004 8.31957C10.1404 8.39624 10.2504 8.5079 10.3304 8.65457H11.1354C11.0254 8.3079 10.8254 8.03957 10.5354 7.84957C10.2454 7.65624 9.90368 7.55957 9.51035 7.55957C9.17702 7.55957 8.87368 7.63624 8.60035 7.78957C8.33035 7.93957 8.11702 8.15124 7.96035 8.42457C7.80702 8.69457 7.73035 9.00124 7.73035 9.34457C7.73035 9.6879 7.80702 9.99457 7.96035 10.2646C8.11702 10.5346 8.33035 10.7462 8.60035 10.8996C8.87368 11.0496 9.17868 11.1246 9.51535 11.1246C9.81535 11.1246 10.0854 11.0629 10.3254 10.9396C10.5687 10.8129 10.767 10.6462 10.9204 10.4396C11.0737 10.2329 11.1737 10.0079 11.2204 9.76457V9.15457H9.33035V9.68957H10.5304C10.477 9.9429 10.3654 10.1412 10.1954 10.2846C10.0254 10.4246 9.80702 10.4946 9.54035 10.4946C9.32368 10.4946 9.13369 10.4479 8.97035 10.3546C8.80702 10.2612 8.67868 10.1279 8.58535 9.95457C8.49535 9.78124 8.45035 9.5779 8.45035 9.34457C8.45035 9.1179 8.49535 8.9179 8.58535 8.74457C8.67535 8.57124 8.80035 8.4379 8.96035 8.34457C9.12035 8.25124 9.30369 8.20457 9.51035 8.20457C9.69702 8.20457 9.86035 8.2429 10.0004 8.31957Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.15355 9.85449V7.89449H2.58955V9.85449C2.58955 9.96649 2.56289 10.0545 2.50955 10.1185C2.45622 10.1825 2.37889 10.2145 2.27755 10.2145C2.17355 10.2145 2.09355 10.1812 2.03755 10.1145C1.98422 10.0478 1.95622 9.95449 1.95355 9.83449H1.39355C1.39355 10.1118 1.47489 10.3278 1.63755 10.4825C1.80289 10.6372 2.01889 10.7145 2.28555 10.7145C2.54955 10.7145 2.76022 10.6398 2.91755 10.4905C3.07489 10.3385 3.15355 10.1265 3.15355 9.85449ZM4.2428 10.6145C4.40014 10.6812 4.57614 10.7145 4.7708 10.7145C4.97614 10.7145 5.15347 10.6772 5.3028 10.6025C5.45214 10.5252 5.56547 10.4225 5.6428 10.2945C5.72014 10.1665 5.7588 10.0278 5.7588 9.87849C5.7588 9.70516 5.71747 9.56516 5.6348 9.45849C5.55214 9.35183 5.45347 9.27183 5.3388 9.21849C5.22414 9.16516 5.07614 9.11183 4.8948 9.05849C4.76147 9.01849 4.65747 8.98383 4.5828 8.95449C4.5108 8.92249 4.44947 8.88249 4.3988 8.83449C4.3508 8.78383 4.3268 8.72116 4.3268 8.64649C4.3268 8.53983 4.3588 8.45849 4.4228 8.40249C4.48947 8.34649 4.57747 8.31849 4.6868 8.31849C4.81214 8.31849 4.91214 8.35049 4.9868 8.41449C5.06414 8.47583 5.10547 8.55449 5.1108 8.65049H5.7268C5.70814 8.39983 5.60814 8.20516 5.42681 8.06649C5.24814 7.92516 5.0148 7.85449 4.7268 7.85449C4.5348 7.85449 4.36414 7.88783 4.2148 7.95449C4.06547 8.01849 3.94947 8.11183 3.8668 8.23449C3.78414 8.35716 3.7428 8.50116 3.7428 8.66649C3.7428 8.84249 3.7828 8.98383 3.8628 9.09049C3.94547 9.19449 4.0428 9.27316 4.1548 9.32649C4.26947 9.37716 4.41747 9.42916 4.5988 9.48249C4.73214 9.51983 4.83614 9.55449 4.9108 9.58649C4.98814 9.61583 5.05214 9.65716 5.1028 9.71049C5.15347 9.76383 5.1788 9.83183 5.1788 9.91449C5.1788 10.0158 5.14147 10.0985 5.0668 10.1625C4.99214 10.2238 4.88947 10.2545 4.7588 10.2545C4.6308 10.2545 4.52947 10.2212 4.4548 10.1545C4.3828 10.0878 4.3428 9.99716 4.3348 9.88249H3.7348C3.73747 10.0532 3.78414 10.2012 3.8748 10.3265C3.96547 10.4518 4.08814 10.5478 4.2428 10.6145ZM6.8203 10.5305C7.03897 10.6532 7.27897 10.7145 7.5403 10.7145C7.80164 10.7145 8.04164 10.6532 8.2603 10.5305C8.47897 10.4078 8.65097 10.2385 8.7763 10.0225C8.9043 9.80383 8.96831 9.55716 8.96831 9.28249C8.96831 9.01049 8.9043 8.76649 8.7763 8.55049C8.65097 8.33183 8.47897 8.16116 8.2603 8.03849C8.0443 7.91583 7.8043 7.85449 7.5403 7.85449C7.27897 7.85449 7.03897 7.91583 6.8203 8.03849C6.60164 8.16116 6.4283 8.33183 6.3003 8.55049C6.1723 8.76649 6.1083 9.01049 6.1083 9.28249C6.1083 9.55716 6.1723 9.80383 6.3003 10.0225C6.4283 10.2385 6.60164 10.4078 6.8203 10.5305ZM7.9843 10.1025C7.8563 10.1772 7.7083 10.2145 7.5403 10.2145C7.3723 10.2145 7.22297 10.1772 7.0923 10.1025C6.9643 10.0252 6.8643 9.91583 6.7923 9.77449C6.7203 9.63316 6.6843 9.46916 6.6843 9.28249C6.6843 9.09583 6.7203 8.93316 6.7923 8.79449C6.8643 8.65316 6.9643 8.54516 7.0923 8.47049C7.22297 8.39583 7.3723 8.35849 7.5403 8.35849C7.7083 8.35849 7.8563 8.39583 7.9843 8.47049C8.1123 8.54516 8.21231 8.65316 8.28431 8.79449C8.3563 8.93316 8.3923 9.09583 8.3923 9.28249C8.3923 9.46916 8.3563 9.63316 8.28431 9.77449C8.21231 9.91583 8.1123 10.0252 7.9843 10.1025ZM11.2129 10.6865H11.7729V7.89049H11.2129V9.81049L9.94493 7.89049H9.38493V10.6865H9.94493V8.77049L11.2129 10.6865Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.48617 9.25832C4.57617 9.09499 4.62117 8.91999 4.62117 8.73332C4.62117 8.52665 4.57284 8.34165 4.47617 8.17832C4.38284 8.01499 4.24117 7.88665 4.05117 7.79332C3.86117 7.69999 3.63117 7.65332 3.36117 7.65332H2.07617V11.1433H2.77617V9.80332H3.36117C3.64784 9.80332 3.88451 9.75332 4.07117 9.65332C4.26117 9.55332 4.39951 9.42165 4.48617 9.25832ZM3.76117 9.10832C3.66784 9.19499 3.52451 9.23832 3.33117 9.23832H2.77617V8.22332H3.33117C3.71117 8.22332 3.90117 8.39332 3.90117 8.73332C3.90117 8.89332 3.85451 9.01832 3.76117 9.10832ZM7.30316 7.86832C7.0265 7.72499 6.70483 7.65332 6.33816 7.65332H5.11816V11.1433H6.33816C6.70483 11.1433 7.0265 11.0717 7.30316 10.9283C7.58316 10.785 7.79816 10.5833 7.94816 10.3233C8.1015 10.06 8.17816 9.75332 8.17816 9.40332C8.17816 9.05332 8.1015 8.74665 7.94816 8.48332C7.79816 8.21665 7.58316 8.01165 7.30316 7.86832ZM7.16316 10.2483C6.96316 10.4483 6.67983 10.5483 6.31316 10.5483H5.81816V8.24332H6.31316C6.67983 8.24332 6.96316 8.34665 7.16316 8.55332C7.36316 8.75665 7.46316 9.03999 7.46316 9.40332C7.46316 9.76665 7.36316 10.0483 7.16316 10.2483ZM10.8571 8.21832V7.65332H8.70215V11.1433H9.40215V9.66832H10.5171V9.11332H9.40215V8.21832H10.8571Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.10922 9.23887C4.19922 9.07553 4.24422 8.90053 4.24422 8.71387C4.24422 8.5072 4.19589 8.3222 4.09922 8.15887C4.00589 7.99553 3.86422 7.8672 3.67422 7.77387C3.48422 7.68053 3.25422 7.63387 2.98422 7.63387H1.69922V11.1239H2.39922V9.78387H2.98422C3.27089 9.78387 3.50755 9.73387 3.69422 9.63387C3.88422 9.53387 4.02255 9.4022 4.10922 9.23887ZM3.38422 9.08887C3.29089 9.17553 3.14755 9.21887 2.95422 9.21887H2.39922V8.20387H2.95422C3.33422 8.20387 3.52422 8.37387 3.52422 8.71387C3.52422 8.87387 3.47755 8.99887 3.38422 9.08887ZM7.02621 11.1239H7.72621V7.62887H7.02621V10.0289L5.44121 7.62887H4.74121V11.1239H5.44121V8.72887L7.02621 11.1239ZM10.518 8.34887C10.658 8.42553 10.768 8.5372 10.848 8.68387H11.653C11.543 8.3372 11.343 8.06887 11.053 7.87887C10.763 7.68553 10.4213 7.58887 10.028 7.58887C9.69464 7.58887 9.3913 7.66553 9.11797 7.81887C8.84797 7.96887 8.63464 8.18053 8.47797 8.45387C8.32464 8.72387 8.24797 9.03053 8.24797 9.37387C8.24797 9.7172 8.32464 10.0239 8.47797 10.2939C8.63464 10.5639 8.84797 10.7755 9.11797 10.9289C9.3913 11.0789 9.6963 11.1539 10.033 11.1539C10.333 11.1539 10.603 11.0922 10.843 10.9689C11.0863 10.8422 11.2846 10.6755 11.438 10.4689C11.5913 10.2622 11.6913 10.0372 11.738 9.79387V9.18387H9.84797V9.71887H11.048C10.9946 9.9722 10.883 10.1705 10.713 10.3139C10.543 10.4539 10.3246 10.5239 10.058 10.5239C9.8413 10.5239 9.6513 10.4772 9.48797 10.3839C9.32464 10.2905 9.1963 10.1572 9.10297 9.98387C9.01297 9.81053 8.96797 9.6072 8.96797 9.37387C8.96797 9.1472 9.01297 8.9472 9.10297 8.77387C9.19297 8.60053 9.31797 8.4672 9.47797 8.37387C9.63797 8.28053 9.8213 8.23387 10.028 8.23387C10.2146 8.23387 10.378 8.2722 10.518 8.34887Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.2974 9.27172L14.6318 8.72378C14.1758 8.34844 14.1766 7.65081 14.6318 7.27622L15.2974 6.72828C15.771 6.33831 15.8922 5.66963 15.5854 5.13822L14.2711 2.86178C13.9643 2.33041 13.3245 2.10103 12.7501 2.31622L11.9427 2.61869C11.3897 2.82581 10.786 2.47647 10.6891 1.89491L10.5473 1.04447C10.4465 0.439281 9.92794 0 9.31437 0H6.68578C6.07219 0 5.55362 0.439281 5.45278 1.0445L5.31103 1.89491C5.21394 2.4775 4.60938 2.82547 4.05741 2.61872L3.25006 2.31622C2.67559 2.10103 2.03584 2.33044 1.729 2.86178L0.414718 5.13819C0.107937 5.66953 0.229062 6.33825 0.702781 6.72825L1.36837 7.27619C1.82437 7.65156 1.82347 8.34912 1.36837 8.72375L0.702749 9.27169C0.229062 9.66169 0.107906 10.3304 0.414687 10.8618L1.729 13.1382C2.03581 13.6695 2.67544 13.8989 3.25006 13.6838L4.05737 13.3813C4.61047 13.1741 5.21409 13.5237 5.311 14.1051L5.45275 14.9554C5.55362 15.5607 6.07219 16 6.68575 16H9.31434C9.92791 16 10.4465 15.5607 10.5473 14.9555L10.689 14.1051C10.7861 13.5227 11.3906 13.1745 11.9427 13.3813L12.7501 13.6838C13.3247 13.899 13.9643 13.6696 14.2711 13.1382L15.5855 10.8618C15.8922 10.3304 15.771 9.66169 15.2974 9.27172ZM13.6196 11.7666C13.3709 12.1974 12.8471 12.3853 12.3813 12.2107C11.0907 11.7273 9.68219 12.5429 9.45609 13.8996C9.37431 14.3903 8.94974 14.75 8.45224 14.75H7.54792C7.05042 14.75 6.62583 14.3903 6.54403 13.8996C6.3175 12.5403 4.90697 11.7282 3.61887 12.2107C3.15299 12.3853 2.62921 12.1974 2.38046 11.7666L1.9283 10.9834C1.67956 10.5526 1.77876 10.005 2.16284 9.68884C3.22687 8.81291 3.22466 7.18528 2.16284 6.31116C1.77876 5.99497 1.67957 5.44744 1.92831 5.0166L2.3805 4.23339C2.62925 3.80256 3.15301 3.61471 3.61887 3.78925C4.9095 4.27269 6.31794 3.45706 6.54403 2.10041C6.62581 1.60968 7.05039 1.25 7.54788 1.25H8.45221C8.94971 1.25 9.37428 1.60968 9.45606 2.10041C9.68262 3.45984 11.0932 4.27169 12.3812 3.78925C12.8471 3.6147 13.3709 3.80253 13.6198 4.23335L14.0718 5.01599C14.3207 5.44699 14.2215 5.99478 13.8372 6.31112C12.7733 7.187 12.7754 8.81466 13.8372 9.68881C14.2213 10.005 14.3205 10.5525 14.0718 10.9834L13.6196 11.7666Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.84562 9.65817C7.0032 9.65817 7.11696 9.809 7.07366 9.96052C7.04457 10.0623 6.95151 10.1325 6.84562 10.1325H6.36815C5.95661 10.1325 5.68582 9.65817 6.09736 9.65817H6.84562ZM7.34519 9.01035C7.31609 9.11217 7.22303 9.18236 7.11714 9.18236H5.71242C5.30089 9.18236 5.0301 8.70801 5.44163 8.70801H7.11714C7.27472 8.70801 7.38849 8.85884 7.34519 9.01035ZM7.61724 8.05832C7.58795 8.16085 7.49404 8.2322 7.38741 8.2322H4.70925C4.29772 8.2322 4.02693 7.75784 4.43846 7.75784H7.39086C7.496 7.75784 7.58841 7.82754 7.61731 7.92863C7.6294 7.97093 7.62933 8.01602 7.61724 8.05832ZM7.30402 6.83259C7.34733 6.98411 7.23356 7.13495 7.07598 7.13495H5.71242C5.30089 7.13495 5.0301 6.6606 5.44163 6.6606H7.07598C7.18186 6.6606 7.27492 6.73079 7.30402 6.83259ZM7.03238 5.88226C7.07569 6.03378 6.96192 6.18462 6.80433 6.18462H6.26611C5.91093 6.18462 5.649 5.79659 5.99607 5.7211C6.0287 5.71401 6.06259 5.71027 6.09736 5.71027H6.80433C6.91022 5.71027 7.00328 5.78045 7.03238 5.88226Z" fill="currentColor"/>
4
+ <path d="M7.38239 10.7495C7.41437 10.7736 7.45335 10.7867 7.49341 10.7867C7.52874 10.7866 7.56334 10.7766 7.59321 10.7577L11.6803 8.15678C11.7067 8.14001 11.7284 8.11684 11.7435 8.08944C11.7585 8.06204 11.7664 8.03128 11.7664 8.00002C11.7664 7.96876 11.7585 7.93801 11.7435 7.9106C11.7284 7.8832 11.7067 7.86004 11.6803 7.84326L7.59321 5.24238C7.56137 5.22213 7.52412 5.21204 7.48642 5.21345C7.44871 5.21486 7.41233 5.2277 7.38209 5.25028C7.35186 5.27286 7.3292 5.30409 7.31714 5.33984C7.30507 5.3756 7.30417 5.41417 7.31454 5.45045L8.04331 8.00002L7.31469 10.5497C7.30438 10.586 7.30534 10.6245 7.31743 10.6602C7.32952 10.6959 7.35217 10.727 7.38239 10.7495Z" fill="#10B660"/>
5
+ </svg>
@@ -0,0 +1,33 @@
1
+ <svg width="30" height="31" viewBox="0 0 30 31" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_ddi_5110_1318)">
3
+ <path d="M26 15C26 21.6274 20.6274 27 14 27C7.37258 27 2 21.6274 2 15C2 8.37258 7.37258 3 14 3C20.6274 3 26 8.37258 26 15Z" fill="url(#paint0_linear_5110_1318)"/>
4
+ </g>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M21.9993 15.106C21.9926 15.6149 21.5249 15.9719 21.0201 15.9067C20.5153 15.8415 20.1663 15.3781 20.1555 14.8693C20.134 13.8599 19.8645 12.8663 19.3644 11.9784C18.7128 10.8216 17.7046 9.90633 16.4903 9.36928C15.276 8.83222 13.9206 8.70212 12.6263 8.99837C11.332 9.29462 10.1681 10.0014 9.30833 11.0132C8.44854 12.025 7.93887 13.2876 7.85535 14.6127C7.77184 15.9379 8.11895 17.2545 8.84492 18.3663C9.57089 19.478 10.6368 20.3253 11.8837 20.7817C12.8406 21.1319 13.8647 21.2376 14.8643 21.0959C15.3682 21.0244 15.8819 21.2941 16.0277 21.7818C16.1735 22.2694 15.8966 22.7886 15.3954 22.8774C14.011 23.1226 12.5806 22.9995 11.2501 22.5125C9.62997 21.9195 8.24495 20.8186 7.30166 19.374C6.35836 17.9295 5.90733 16.2187 6.01585 14.4968C6.12436 12.775 6.78661 11.1343 7.9038 9.81963C9.02099 8.50493 10.5333 7.58662 12.215 7.20168C13.8968 6.81674 15.658 6.98579 17.2358 7.68362C18.8137 8.38145 20.1236 9.57067 20.9703 11.0739C21.6656 12.3083 22.0179 13.7002 21.9993 15.106ZM18.2062 17.3323C18.2062 17.4492 18.2154 17.5446 18.2339 17.6184L18.6031 17.6461C18.3692 18.8277 17.8831 20.4308 17.1446 22.4554L16.8215 22.4831C16.8092 22.5692 16.8031 22.6554 16.8031 22.7415C16.8031 22.8215 16.8123 22.9077 16.8308 23C16.9662 22.9938 17.2 22.9908 17.5323 22.9908C17.8708 22.9908 18.1139 22.9938 18.2615 23C18.28 22.8954 18.2892 22.8184 18.2892 22.7692C18.2892 22.7138 18.2831 22.6184 18.2708 22.4831L17.92 22.4554L18.1785 21.3569C18.5354 21.3323 18.9169 21.32 19.3231 21.32C19.7354 21.32 20.1169 21.3292 20.4677 21.3477C20.4739 21.3784 20.5108 21.5354 20.5785 21.8184C20.6462 22.0954 20.6954 22.3077 20.7262 22.4554L20.4031 22.4831C20.3908 22.5692 20.3846 22.6554 20.3846 22.7415C20.3846 22.8215 20.3939 22.9077 20.4123 23C20.5539 22.9938 20.8062 22.9908 21.1692 22.9908C21.5323 22.9908 21.8 22.9938 21.9723 23C21.9908 22.8954 22 22.8184 22 22.7692C22 22.7138 21.9939 22.6184 21.9815 22.4831L21.64 22.4554C20.76 20.0369 20.2462 18.2492 20.0985 17.0923C19.9139 17.0308 19.6892 17 19.4246 17C19.16 17 18.7569 17.0338 18.2154 17.1015C18.2092 17.1384 18.2062 17.2154 18.2062 17.3323ZM19.2862 20.72C18.8677 20.72 18.5539 20.7169 18.3446 20.7108C18.64 19.5538 18.9692 18.5354 19.3323 17.6554H19.3877C19.7077 18.5846 20.0123 19.5969 20.3015 20.6923C20.0431 20.7108 19.7046 20.72 19.2862 20.72Z" fill="white"/>
6
+ <path d="M12.0875 18.2067C12.1248 18.2349 12.1702 18.2501 12.217 18.2501C12.2582 18.25 12.2985 18.2382 12.3334 18.2162L17.1001 15.1828C17.1308 15.1633 17.1562 15.1363 17.1737 15.1043C17.1913 15.0724 17.2005 15.0365 17.2005 15C17.2005 14.9636 17.1913 14.9277 17.1737 14.8957C17.1562 14.8638 17.1308 14.8368 17.1001 14.8172L12.3334 11.7838C12.2962 11.7602 12.2528 11.7484 12.2088 11.7501C12.1648 11.7517 12.1224 11.7667 12.0871 11.793C12.0519 11.8194 12.0255 11.8558 12.0114 11.8975C11.9973 11.9392 11.9963 11.9842 12.0084 12.0265L12.8583 15L12.0085 17.9737C11.9965 18.016 11.9976 18.0609 12.0117 18.1025C12.0258 18.1441 12.0523 18.1805 12.0875 18.2067Z" fill="white"/>
7
+ <defs>
8
+ <filter id="filter0_ddi_5110_1318" x="0" y="0" width="30" height="31" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
9
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
10
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
11
+ <feOffset dx="1" dy="1"/>
12
+ <feGaussianBlur stdDeviation="1.5"/>
13
+ <feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.4 0"/>
14
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5110_1318"/>
15
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
16
+ <feOffset dx="1" dy="-1"/>
17
+ <feGaussianBlur stdDeviation="1"/>
18
+ <feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.1 0"/>
19
+ <feBlend mode="normal" in2="effect1_dropShadow_5110_1318" result="effect2_dropShadow_5110_1318"/>
20
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_5110_1318" result="shape"/>
21
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
22
+ <feOffset dx="-1" dy="-1"/>
23
+ <feGaussianBlur stdDeviation="1"/>
24
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
25
+ <feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.5 0"/>
26
+ <feBlend mode="normal" in2="shape" result="effect3_innerShadow_5110_1318"/>
27
+ </filter>
28
+ <linearGradient id="paint0_linear_5110_1318" x1="3.72771" y1="5.34599" x2="26" y2="27" gradientUnits="userSpaceOnUse">
29
+ <stop offset="1" stop-color="#2A6F09"/>
30
+ <stop stop-color="#44B002"/>
31
+ </linearGradient>
32
+ </defs>
33
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.10873 11.1962C6.14603 11.2244 6.19148 11.2396 6.23821 11.2396C6.27942 11.2395 6.31977 11.2278 6.3546 11.2057L11.1213 8.17235C11.1521 8.15278 11.1774 8.12577 11.195 8.09381C11.2125 8.06185 11.2217 8.02599 11.2217 7.98953C11.2217 7.95307 11.2125 7.9172 11.195 7.88524C11.1774 7.85328 11.1521 7.82627 11.1213 7.8067L6.3546 4.77334C6.31747 4.74972 6.27403 4.73795 6.23006 4.73959C6.18608 4.74124 6.14364 4.75622 6.10838 4.78255C6.07312 4.80888 6.0467 4.84531 6.03263 4.88701C6.01856 4.9287 6.0175 4.97369 6.0296 5.016L6.87955 7.98953L6.02977 10.9632C6.01775 11.0055 6.01887 11.0504 6.03297 11.092C6.04707 11.1336 6.07349 11.17 6.10873 11.1962Z" fill="#10B660"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15.8751 9.40825C15.7855 9.90928 15.2659 10.1853 14.7785 10.0387C14.2911 9.89211 14.0222 9.378 14.0945 8.87419C14.2422 7.84415 14.1271 6.7881 13.7528 5.80646C13.2685 4.53625 12.3774 3.46205 11.2185 2.7514C10.0596 2.04076 8.69815 1.73365 7.34641 1.87796C5.99468 2.02227 4.72871 2.60989 3.74598 3.54917C2.76324 4.48845 2.11901 5.72657 1.91375 7.0704C1.7085 8.41423 1.95377 9.78821 2.61131 10.978C3.26885 12.1678 4.30169 13.1066 5.54871 13.6478C6.51243 14.0661 7.5622 14.2288 8.59786 14.1277C9.10443 14.0783 9.60586 14.3701 9.73028 14.8637C9.85469 15.3572 9.55547 15.8638 9.05091 15.9307C7.61706 16.1207 6.15221 15.919 4.81487 15.3386C3.19453 14.6353 1.8525 13.4155 0.998111 11.8695C0.143724 10.3235 -0.174975 8.53824 0.091725 6.79211C0.358425 5.04598 1.19553 3.43721 2.47246 2.21674C3.74939 0.996269 5.39435 0.232729 7.15075 0.0452152C8.90715 -0.142298 10.6762 0.25676 12.182 1.18014C13.6878 2.10353 14.8457 3.49931 15.475 5.14979C15.9944 6.51198 16.1297 7.98445 15.8751 9.40825ZM14.3475 10.7439C14.3475 10.6747 14.3455 10.6238 14.3414 10.5912C13.926 10.583 13.6429 10.5729 13.4922 10.5606C13.3863 11.1064 13.0217 11.9882 12.3986 13.2061C11.645 11.8172 11.2337 10.9354 11.1644 10.5606C10.9934 10.5729 10.7408 10.583 10.4068 10.5912C10.4028 10.6238 10.4007 10.6747 10.4007 10.7439C10.4007 10.8132 10.4068 10.8763 10.4191 10.9333L10.6451 10.9516C10.6573 11.1227 10.6634 11.306 10.6634 11.5015C10.6634 12.5157 10.6207 13.3934 10.5351 14.1347L10.3213 14.1531C10.3132 14.2264 10.3091 14.2875 10.3091 14.3363C10.3091 14.3812 10.3152 14.4341 10.3274 14.4952C10.4537 14.4911 10.6023 14.4891 10.7734 14.4891C10.9445 14.4891 11.0952 14.4911 11.2255 14.4952C11.2377 14.426 11.2439 14.3689 11.2439 14.3241C11.2439 14.2753 11.2398 14.2182 11.2316 14.1531L11.0056 14.1347C10.9974 13.8985 10.9934 13.5808 10.9934 13.1816C10.9934 12.7784 11.0097 12.2876 11.0422 11.7092C11.0911 11.7988 11.2459 12.088 11.5066 12.5768C11.7713 13.0615 11.975 13.4749 12.1175 13.817C12.1501 13.8211 12.2112 13.8231 12.3008 13.8231C12.3945 13.8231 12.4821 13.8069 12.5635 13.7743C12.6979 13.4321 12.9464 12.9006 13.3089 12.1797C13.4718 11.8498 13.5736 11.642 13.6144 11.5565C13.651 12.2285 13.6694 12.754 13.6694 13.1328C13.6694 13.5075 13.6653 13.8415 13.6571 14.1347L13.4555 14.1531C13.4474 14.2264 13.4433 14.2875 13.4433 14.3363C13.4433 14.3812 13.4494 14.4341 13.4616 14.4952C13.6001 14.4911 13.763 14.4891 13.9504 14.4891C14.1378 14.4891 14.3027 14.4911 14.4453 14.4952C14.4575 14.426 14.4636 14.3689 14.4636 14.3241C14.4636 14.2753 14.4595 14.2182 14.4514 14.1531L14.2253 14.1347C14.1357 13.3486 14.0909 12.4566 14.0909 11.4587C14.0909 11.2347 14.0929 11.0657 14.097 10.9516L14.3292 10.9333C14.3414 10.8763 14.3475 10.8132 14.3475 10.7439Z" fill="currentColor"/>
4
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M7.85401 7.14867L6.30549 5.59951C7.46416 4.05112 7.14823 1.8566 5.59984 0.697929C4.05145 -0.460742 1.85694 -0.14481 0.698265 1.40358C-0.460407 2.95197 -0.144475 5.14648 1.40391 6.30516C2.64771 7.2359 4.35603 7.2359 5.59984 6.30516L7.14901 7.85432C7.34369 8.049 7.65933 8.049 7.85399 7.85432C8.04867 7.65964 8.04867 7.34401 7.85399 7.14934L7.85401 7.14867ZM3.51479 6.00615C2.13865 6.00615 1.02309 4.89059 1.02309 3.51445C1.02309 2.13832 2.13865 1.02275 3.51479 1.02275C4.89092 1.02275 6.00649 2.13832 6.00649 3.51445C6.00502 4.88996 4.89032 6.00469 3.51479 6.00615Z" fill="currentColor"/>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.38067 1.54839C4.1596 1.54839 1.54839 4.1596 1.54839 7.38067C1.54839 10.6017 4.15959 13.2129 7.38067 13.2129C10.6017 13.2129 13.2129 10.6017 13.2129 7.38067C13.2129 4.15959 10.6017 1.54839 7.38067 1.54839ZM0 7.38067C0 3.30445 3.30445 0 7.38067 0C11.4569 0 14.7613 3.30446 14.7613 7.38067C14.7613 11.4569 11.4569 14.7613 7.38067 14.7613C3.30446 14.7613 0 11.4569 0 7.38067ZM12.6139 12.6139C12.9162 12.3115 13.4064 12.3115 13.7087 12.6139L15.7732 14.6784C16.0756 14.9807 16.0756 15.4709 15.7732 15.7732C15.4709 16.0756 14.9807 16.0756 14.6784 15.7732L12.6139 13.7087C12.3115 13.4064 12.3115 12.9162 12.6139 12.6139Z" fill="currentColor"/>
3
3
  </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.64789 8.16949V7.60449H2.08789V8.16949H3.01789V11.0945H3.71789V8.16949H4.64789ZM6.49363 9.91949L7.24863 11.0945H8.05363L6.93863 9.35949L8.03363 7.60449H7.24363L6.56363 8.77449L5.80863 7.60449H5.00363L6.11863 9.33449L5.01863 11.0945H5.80863L6.49363 9.91949ZM10.9614 8.16949V7.60449H8.40137V8.16949H9.33137V11.0945H10.0314V8.16949H10.9614Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.1648 9.96852L4.9198 11.1435H5.7248L4.6098 9.40852L5.7048 7.65352H4.9148L4.2348 8.82352L3.4798 7.65352H2.6748L3.7898 9.38352L2.6898 11.1435H3.4798L4.1648 9.96852ZM8.10754 10.5885H6.95754V7.65352H6.25754V11.1435H8.10754V10.5885ZM9.09746 11.0535C9.29413 11.1368 9.51413 11.1785 9.75746 11.1785C10.0141 11.1785 10.2358 11.1318 10.4225 11.0385C10.6091 10.9418 10.7508 10.8135 10.8475 10.6535C10.9441 10.4935 10.9925 10.3202 10.9925 10.1335C10.9925 9.91685 10.9408 9.74185 10.8375 9.60852C10.7341 9.47518 10.6108 9.37518 10.4675 9.30852C10.3241 9.24185 10.1391 9.17518 9.91246 9.10852C9.74579 9.05852 9.61579 9.01518 9.52246 8.97852C9.43246 8.93852 9.35579 8.88852 9.29246 8.82852C9.23246 8.76518 9.20246 8.68685 9.20246 8.59352C9.20246 8.46018 9.24246 8.35852 9.32246 8.28852C9.40579 8.21852 9.51579 8.18352 9.65246 8.18352C9.80913 8.18352 9.93413 8.22352 10.0275 8.30352C10.1241 8.38018 10.1758 8.47852 10.1825 8.59852H10.9525C10.9291 8.28518 10.8041 8.04185 10.5775 7.86852C10.3541 7.69185 10.0625 7.60352 9.70246 7.60352C9.46246 7.60352 9.24913 7.64518 9.06246 7.72852C8.87579 7.80852 8.73079 7.92518 8.62746 8.07852C8.52413 8.23185 8.47246 8.41185 8.47246 8.61852C8.47246 8.83852 8.52246 9.01518 8.62246 9.14852C8.72579 9.27852 8.84746 9.37685 8.98746 9.44352C9.13079 9.50685 9.31579 9.57185 9.54246 9.63852C9.70913 9.68518 9.83913 9.72852 9.93246 9.76852C10.0291 9.80518 10.1091 9.85685 10.1725 9.92352C10.2358 9.99018 10.2675 10.0752 10.2675 10.1785C10.2675 10.3052 10.2208 10.4085 10.1275 10.4885C10.0341 10.5652 9.90579 10.6035 9.74246 10.6035C9.58246 10.6035 9.45579 10.5618 9.36246 10.4785C9.27246 10.3952 9.22246 10.2818 9.21246 10.1385H8.46246C8.46579 10.3518 8.52413 10.5368 8.63746 10.6935C8.75079 10.8502 8.90413 10.9702 9.09746 11.0535Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.88829 9.74649L3.49229 10.6865H4.13629L3.24429 9.29849L4.12029 7.89449H3.48829L2.94429 8.83049L2.34029 7.89449H1.69629L2.58829 9.27849L1.70829 10.6865H2.34029L2.88829 9.74649ZM6.04248 10.2425H5.12248V7.89449H4.56248V10.6865H6.04248V10.2425ZM6.83441 10.6145C6.99175 10.6812 7.16775 10.7145 7.36241 10.7145C7.56775 10.7145 7.74508 10.6772 7.89441 10.6025C8.04375 10.5252 8.15708 10.4225 8.23441 10.2945C8.31175 10.1665 8.35041 10.0278 8.35041 9.87849C8.35041 9.70516 8.30908 9.56516 8.22641 9.45849C8.14375 9.35183 8.04508 9.27183 7.93041 9.21849C7.81575 9.16516 7.66775 9.11183 7.48641 9.05849C7.35308 9.01849 7.24908 8.98383 7.17441 8.95449C7.10241 8.92249 7.04108 8.88249 6.99041 8.83449C6.94241 8.78383 6.91841 8.72116 6.91841 8.64649C6.91841 8.53983 6.95041 8.45849 7.01441 8.40249C7.08108 8.34649 7.16908 8.31849 7.27841 8.31849C7.40375 8.31849 7.50375 8.35049 7.57841 8.41449C7.65575 8.47583 7.69708 8.55449 7.70241 8.65049H8.31841C8.29975 8.39983 8.19975 8.20516 8.01841 8.06649C7.83975 7.92516 7.60641 7.85449 7.31841 7.85449C7.12641 7.85449 6.95575 7.88783 6.80641 7.95449C6.65708 8.01849 6.54108 8.11183 6.45841 8.23449C6.37575 8.35716 6.33441 8.50116 6.33441 8.66649C6.33441 8.84249 6.37441 8.98383 6.45441 9.09049C6.53708 9.19449 6.63441 9.27316 6.74641 9.32649C6.86108 9.37716 7.00908 9.42916 7.19041 9.48249C7.32375 9.51983 7.42775 9.55449 7.50241 9.58649C7.57975 9.61583 7.64375 9.65716 7.69441 9.71049C7.74508 9.76383 7.77041 9.83183 7.77041 9.91449C7.77041 10.0158 7.73308 10.0985 7.65841 10.1625C7.58375 10.2238 7.48108 10.2545 7.35041 10.2545C7.22241 10.2545 7.12108 10.2212 7.04641 10.1545C6.97441 10.0878 6.93441 9.99716 6.92641 9.88249H6.32641C6.32908 10.0532 6.37575 10.2012 6.46641 10.3265C6.55708 10.4518 6.67975 10.5478 6.83441 10.6145ZM9.90391 9.74649L10.5079 10.6865H11.1519L10.2599 9.29849L11.1359 7.89449H10.5039L9.95991 8.83049L9.35591 7.89449H8.71191L9.60391 9.27849L8.72391 10.6865H9.35591L9.90391 9.74649Z" fill="white"/>
4
+ </svg>