@crystallize/design-system 1.4.3 → 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/index.css +85 -142
  3. package/dist/index.d.ts +25 -2
  4. package/dist/index.js +2438 -4457
  5. package/dist/index.mjs +2246 -4283
  6. package/package.json +19 -19
  7. package/src/iconography/app.tsx +38 -0
  8. package/src/iconography/billing-payments.tsx +62 -0
  9. package/src/iconography/cloud-with-key-hole.tsx +32 -0
  10. package/src/iconography/cloud.tsx +24 -0
  11. package/src/iconography/document.tsx +19 -0
  12. package/src/iconography/folder.tsx +30 -0
  13. package/src/iconography/frontends.tsx +49 -0
  14. package/src/iconography/index.ts +43 -2
  15. package/src/iconography/info.tsx +2 -2
  16. package/src/iconography/lock-closed.tsx +46 -0
  17. package/src/iconography/multilingual.tsx +38 -0
  18. package/src/iconography/people.tsx +62 -0
  19. package/src/iconography/plans-and-pricing.tsx +55 -0
  20. package/src/iconography/product.tsx +42 -0
  21. package/src/iconography/rocket.tsx +38 -0
  22. package/src/iconography/stock-location.tsx +77 -0
  23. package/src/iconography/subscription-contracts.tsx +52 -0
  24. package/src/iconography/subscription-plans.tsx +57 -0
  25. package/src/iconography/target.tsx +62 -0
  26. package/src/iconography/usage-meter.tsx +41 -0
  27. package/src/iconography/user-card.tsx +22 -0
  28. package/src/rich-text-editor/model/crystallize-to-lexical.ts +1 -1
  29. package/src/rich-text-editor/model/lexical-to-crystallize.ts +2 -2
  30. package/src/rich-text-editor/model/to-text.test.ts +97 -0
  31. package/src/rich-text-editor/model/to-text.ts +47 -0
  32. package/src/rich-text-editor/nodes/BaseNodes.ts +0 -3
  33. package/src/rich-text-editor/plugins/ActionsPlugin/index.tsx +1 -1
  34. package/src/rich-text-editor/plugins/CodeActionMenuPlugin/index.tsx +1 -1
  35. package/src/rich-text-editor/plugins/ComponentPickerPlugin/index.tsx +5 -5
  36. package/src/rich-text-editor/plugins/DraggableBlockPlugin/index.tsx +29 -50
  37. package/src/rich-text-editor/plugins/MaxLengthPlugin/index.tsx +34 -23
  38. package/src/rich-text-editor/plugins/ToolbarPlugin/index.tsx +8 -8
  39. package/src/rich-text-editor/rich-text-editor.css +3 -3
  40. package/src/rich-text-editor/rich-text-editor.stories.tsx +9 -1
  41. package/src/rich-text-editor/rich-text-editor.tsx +30 -24
  42. package/src/rich-text-editor/tests/rich-text-editor-basic-rendering.test.tsx +1 -1
  43. package/src/rich-text-editor/tests/rich-text-editor-model-basics.test.tsx +1 -1
  44. package/src/rich-text-editor/tests/rich-text-editor-model-conversions.test.tsx +1 -1
  45. package/src/rich-text-editor/tests/rich-text-editor-text-formats.test.tsx +1 -1
  46. package/src/rich-text-editor/themes/{PlaygroundEditorTheme.css → CrystallizeRTEditorTheme.css} +81 -85
  47. package/src/rich-text-editor/themes/CrystallizeRTEditorTheme.ts +113 -0
  48. package/dist/draggable-block-menu-KKHDNKJA.svg +0 -1
  49. package/src/rich-text-editor/appSettings.ts +0 -28
  50. package/src/rich-text-editor/context/SettingsContext.tsx +0 -71
  51. package/src/rich-text-editor/context/SharedAutocompleteContext.tsx +0 -60
  52. package/src/rich-text-editor/nodes/AutocompleteNode.tsx +0 -96
  53. package/src/rich-text-editor/plugins/AutocompletePlugin/index.tsx +0 -2536
  54. package/src/rich-text-editor/themes/PlaygroundEditorTheme.ts +0 -113
  55. /package/src/rich-text-editor/{model → types}/crystallize-rich-text-types/code.ts +0 -0
  56. /package/src/rich-text-editor/{model → types}/crystallize-rich-text-types/headings.ts +0 -0
  57. /package/src/rich-text-editor/{model → types}/crystallize-rich-text-types/index.ts +0 -0
  58. /package/src/rich-text-editor/{model → types}/crystallize-rich-text-types/link.ts +0 -0
  59. /package/src/rich-text-editor/{model → types}/crystallize-rich-text-types/table.ts +0 -0
  60. /package/src/rich-text-editor/{types.ts → types/types.ts} +0 -0
@@ -0,0 +1,62 @@
1
+ import { forwardRef, SVGProps } from 'react';
2
+
3
+ type PeopleProps = SVGProps<SVGSVGElement>;
4
+
5
+ type PeopleRef = SVGSVGElement;
6
+
7
+ export const People = forwardRef<PeopleRef, PeopleProps>((delegated, ref) => {
8
+ return (
9
+ <svg ref={ref} width="17" height="16" viewBox="0 0 17 16" fill="none" {...delegated}>
10
+ <path
11
+ d="M7.308 9.755a1.493 1.493 0 0 0-1.058-.36c-.14 0-.282.01-.425.02l-.091.004a2.21 2.21 0 0 0 .03-.29c.74-.648.761-1.953.734-2.484a1.737 1.737 0 0 0-.426-1.079 1.51 1.51 0 0 0-1.08-.497c-.023-.003-.048-.003-.073-.003a1.459 1.459 0 0 0-.847.305c-.25.191-.446.459-.565.772a2.472 2.472 0 0 0-.107.95c.036.671.099 1.314.478 1.764.085.1.182.186.288.255.006.102.017.204.034.305l-.06-.002c-.144-.01-.283-.02-.42-.02a1.486 1.486 0 0 0-1.055.36 1.49 1.49 0 0 0-.432.905c-.04.22-.061.444-.063.67.002.256.302.323.523.373l.095.021a8.233 8.233 0 0 0 2.114.21c.102 0 .201 0 .306-.002a8.44 8.44 0 0 0 2.51-.362.09.09 0 0 0 .054-.039.11.11 0 0 0 .018-.069.104.104 0 0 0 .009-.053c-.017-.606-.067-1.285-.49-1.654Zm-3.435-1.29c-.235-.436-.254-1.013-.269-1.477a1.886 1.886 0 0 1 .22-1.017c.179-.28.432-.488.724-.593.14-.064.288-.1.438-.105.048 0 .097.004.144.011.16.031.314.087.46.167.278.147.498.404.618.722.058.166.091.342.097.521.041 1.328-.326 2.154-1.088 2.456a.65.65 0 0 1-.256.048 1.278 1.278 0 0 1-.623-.218 1.48 1.48 0 0 1-.465-.516Zm1.664.828c-.005.15-.042.298-.107.43a.92.92 0 0 1-.268.327.53.53 0 0 1-.248.072c-.36 0-.48-.56-.517-.846.184.113.388.177.597.189a.582.582 0 0 0 .129-.015 1.32 1.32 0 0 0 .414-.157Zm-.33 2.403-.332.002a6.922 6.922 0 0 1-2.503-.355c.027-.588.09-1.185.518-1.476a1.49 1.49 0 0 1 .916-.233l.216.002c.072 0 .146-.002.222-.005.121.472.352.722.667.722a.78.78 0 0 0 .19-.027.815.815 0 0 0 .38-.257.972.972 0 0 0 .207-.44c.09.005.18.007.266.007l.223-.002c.315-.024.63.057.906.233.46.312.495.993.517 1.495a8.316 8.316 0 0 1-2.394.334h.001Z"
12
+ fill="#528693"
13
+ />
14
+ <path
15
+ fillRule="evenodd"
16
+ clipRule="evenodd"
17
+ d="M7.44 9.604c.255.223.388.53.461.844.072.311.09.648.098.95a.306.306 0 0 1-.01.099.308.308 0 0 1-.05.146.29.29 0 0 1-.167.12 8.637 8.637 0 0 1-2.562.369c-.106.002-.205.002-.305.002a8.46 8.46 0 0 1-2.162-.215h-.001a4.614 4.614 0 0 0-.091-.02l-.003-.001a1.536 1.536 0 0 1-.393-.128c-.14-.075-.283-.211-.285-.44v-.003c.002-.234.024-.467.065-.696a1.69 1.69 0 0 1 .49-1.02l.01-.01c.34-.285.76-.43 1.19-.405.075 0 .15.002.224.006a1.543 1.543 0 0 1-.224-.215c-.427-.509-.49-1.22-.525-1.88a2.672 2.672 0 0 1 .117-1.025l.003-.01c.131-.346.35-.645.631-.86.282-.215.616-.336.962-.345h.009a1.711 1.711 0 0 1 1.297.564l.003.002c.288.324.456.753.475 1.202.015.275.016.751-.082 1.247-.092.46-.276.96-.64 1.323.088-.005.179-.01.269-.01.43-.025.853.12 1.193.407l.003.002Zm-1.19-.208c.38-.024.754.103 1.058.36.337.293.438.782.474 1.275a7.898 7.898 0 0 1 .017.378.104.104 0 0 1-.009.053.112.112 0 0 1-.018.07.09.09 0 0 1-.054.038 8.44 8.44 0 0 1-2.51.361c-.105.003-.204.003-.306.003a8.258 8.258 0 0 1-2.21-.231l-.003-.001c-.156-.035-.35-.08-.45-.192a.261.261 0 0 1-.07-.18c.003-.226.024-.45.064-.67a1.49 1.49 0 0 1 .432-.905 1.487 1.487 0 0 1 1.054-.36 4.644 4.644 0 0 1 .409.019h.012l.06.003a2.825 2.825 0 0 1-.034-.305 1.323 1.323 0 0 1-.288-.255c-.379-.45-.442-1.093-.478-1.764-.027-.322.01-.646.107-.95.12-.313.315-.58.565-.772.25-.19.544-.296.847-.305.025 0 .05 0 .074.003a1.51 1.51 0 0 1 1.26.745c.055.091.1.188.137.29l.002.004a1.811 1.811 0 0 1 .108.58c.01.253.008.65-.065 1.067-.088.5-.279 1.03-.672 1.373a2.224 2.224 0 0 1-.03.291l.092-.004h.002l.111-.008a5.06 5.06 0 0 1 .312-.011Zm-2.377-.932c.116.211.276.388.465.516.19.127.403.202.623.218a.65.65 0 0 0 .256-.048c.532-.21.871-.677 1.014-1.39a4.728 4.728 0 0 0 .072-1.107 1.461 1.461 0 0 0-.222-.736 1.297 1.297 0 0 0-.491-.466 1.58 1.58 0 0 0-.46-.167 1.003 1.003 0 0 0-.144-.011c-.15.005-.298.041-.438.105a1.445 1.445 0 0 0-.724.593c-.165.305-.242.66-.22 1.017.015.464.034 1.04.269 1.476Zm.124-2.391c-.145.27-.213.585-.193.902v.007c.015.476.036 1 .245 1.387.101.184.24.336.4.445.16.107.339.17.521.184.058 0 .117-.01.172-.033h.001c.64-.255 1.002-.962.962-2.265a1.533 1.533 0 0 0-.085-.459 1.143 1.143 0 0 0-.524-.613l-.003-.002a1.364 1.364 0 0 0-.397-.144.803.803 0 0 0-.107-.01.954.954 0 0 0-.357.088l-.008.004-.008.003a1.244 1.244 0 0 0-.62.506Zm1.105 4.253a.779.779 0 0 1-.19.027c-.316 0-.547-.25-.668-.722h-.006a6.957 6.957 0 0 1-.216.005l-.216-.002a1.49 1.49 0 0 0-.916.233c-.427.29-.49.888-.518 1.476a6.924 6.924 0 0 0 2.503.355l.168-.001.163-.001h.001a8.317 8.317 0 0 0 2.39-.333H7.6c-.004-.1-.01-.206-.018-.315-.034-.442-.13-.93-.5-1.181a1.476 1.476 0 0 0-.905-.233l-.223.002a4.85 4.85 0 0 1-.266-.007.972.972 0 0 1-.207.44.815.815 0 0 1-.38.257Zm.737-.491a1.152 1.152 0 0 1-.205.363c-.126.15-.29.262-.473.32l-.008.002a.976.976 0 0 1-.24.033h-.002a.736.736 0 0 1-.553-.248 1.293 1.293 0 0 1-.262-.47l-.074.001H4.02l-.23-.003a1.29 1.29 0 0 0-.79.201c-.16.11-.262.282-.327.514a3.179 3.179 0 0 0-.093.652 6.712 6.712 0 0 0 2.286.298h.01l.164-.001h.001l.165-.001.001.08.001-.08c.736.006 1.47-.09 2.185-.283a3.287 3.287 0 0 0-.08-.62c-.063-.248-.168-.441-.34-.559a1.276 1.276 0 0 0-.782-.2H6.18l-.225.002-.115-.001Zm-.333-.318a1.055 1.055 0 0 0 .03-.224 1.371 1.371 0 0 1-.413.157.582.582 0 0 1-.13.015 1.25 1.25 0 0 1-.596-.189c.01.072.024.16.045.252.067.278.202.594.472.594a.53.53 0 0 0 .248-.072.92.92 0 0 0 .268-.328 1.02 1.02 0 0 0 .076-.205Zm-.454.366a.723.723 0 0 0 .203-.258.968.968 0 0 1-.09.02.781.781 0 0 1-.172.02h-.01a1.443 1.443 0 0 1-.309-.051c.013.038.027.075.043.11.07.155.14.196.195.198a.329.329 0 0 0 .14-.04Z"
18
+ fill="#528693"
19
+ />
20
+ <path
21
+ d="M7.598 11.362a8.316 8.316 0 0 1-2.392.334l-.332.002a6.924 6.924 0 0 1-2.503-.355c.028-.588.091-1.186.519-1.476a1.49 1.49 0 0 1 .916-.233l.216.002c.072 0 .146-.002.222-.005.12.472.351.722.667.722a.78.78 0 0 0 .19-.027.815.815 0 0 0 .38-.257.972.972 0 0 0 .206-.44c.092.005.18.007.267.007l.222-.002c.316-.024.631.057.906.233.461.312.495.993.516 1.495Z"
22
+ fill="#BFF6F8"
23
+ />
24
+ <path
25
+ d="M5.537 9.293c-.005.15-.041.298-.106.43a.92.92 0 0 1-.269.327.53.53 0 0 1-.247.072c-.36 0-.48-.56-.518-.846.184.113.388.177.597.188a.582.582 0 0 0 .13-.014c.143-.028.283-.081.413-.157Zm.768-2.598c.04 1.327-.326 2.153-1.088 2.455a.65.65 0 0 1-.256.048 1.278 1.278 0 0 1-.623-.219 1.48 1.48 0 0 1-.465-.515c-.235-.436-.254-1.012-.269-1.476a1.886 1.886 0 0 1 .22-1.017c.179-.28.432-.488.724-.593.14-.064.288-.1.438-.106.048 0 .096.005.144.012.16.03.314.087.46.167.277.147.498.403.618.721.058.167.091.344.097.523Z"
26
+ fill="#fff"
27
+ />
28
+ <path
29
+ d="M15.308 9.755a1.493 1.493 0 0 0-1.058-.36c-.14 0-.282.01-.425.02l-.091.004c.016-.096.026-.193.03-.29.74-.648.761-1.953.734-2.484a1.737 1.737 0 0 0-.426-1.079 1.511 1.511 0 0 0-1.08-.497c-.023-.003-.048-.003-.073-.003a1.459 1.459 0 0 0-.847.305 1.74 1.74 0 0 0-.564.772 2.473 2.473 0 0 0-.108.95c.035.671.099 1.314.478 1.764.085.1.181.186.288.255.006.102.017.204.034.305l-.06-.002c-.144-.01-.283-.02-.42-.02a1.486 1.486 0 0 0-1.055.36 1.49 1.49 0 0 0-.432.905c-.04.22-.061.444-.063.67.002.256.303.323.523.373l.095.021a8.233 8.233 0 0 0 2.114.21c.102 0 .201 0 .306-.002a8.44 8.44 0 0 0 2.51-.362.09.09 0 0 0 .055-.039.11.11 0 0 0 .017-.069.104.104 0 0 0 .009-.053c-.017-.606-.067-1.285-.49-1.654Zm-3.435-1.29c-.235-.436-.254-1.013-.269-1.477a1.885 1.885 0 0 1 .22-1.017c.179-.28.433-.488.724-.593.14-.064.288-.1.438-.105.048 0 .097.004.144.011.16.031.314.087.46.167.277.147.498.404.618.722.058.166.091.342.097.521.041 1.328-.326 2.154-1.088 2.456a.65.65 0 0 1-.256.048 1.278 1.278 0 0 1-.623-.218 1.479 1.479 0 0 1-.465-.516Zm1.664.828c-.005.15-.042.298-.107.43a.92.92 0 0 1-.268.327.53.53 0 0 1-.248.072c-.36 0-.48-.56-.517-.846.184.113.388.177.597.189a.582.582 0 0 0 .129-.015 1.32 1.32 0 0 0 .414-.157Zm-.33 2.403-.332.002a6.921 6.921 0 0 1-2.503-.355c.027-.588.09-1.185.518-1.476a1.49 1.49 0 0 1 .916-.233l.216.002c.072 0 .146-.002.222-.005.121.472.352.722.667.722a.78.78 0 0 0 .19-.027.814.814 0 0 0 .38-.257.972.972 0 0 0 .207-.44c.09.005.18.007.266.007l.223-.002c.315-.024.63.057.905.233.462.312.496.993.518 1.495a8.316 8.316 0 0 1-2.393.334Z"
30
+ fill="#528693"
31
+ />
32
+ <path
33
+ fillRule="evenodd"
34
+ clipRule="evenodd"
35
+ d="M15.44 9.604c.255.223.388.53.461.844.072.311.09.648.098.95a.308.308 0 0 1-.01.099.309.309 0 0 1-.05.146.29.29 0 0 1-.168.12 8.637 8.637 0 0 1-2.561.369c-.106.002-.205.002-.305.002a8.46 8.46 0 0 1-2.162-.215h-.002a4.487 4.487 0 0 0-.09-.02l-.003-.001-.012-.003a1.535 1.535 0 0 1-.38-.125c-.141-.075-.284-.211-.286-.44v-.003c.002-.234.024-.467.065-.696a1.69 1.69 0 0 1 .49-1.02l.01-.01c.34-.285.76-.43 1.19-.405.075 0 .15.002.223.006a1.546 1.546 0 0 1-.223-.215c-.428-.509-.49-1.22-.525-1.88a2.67 2.67 0 0 1 .117-1.025l.003-.01c.131-.346.35-.645.631-.86.282-.215.616-.336.962-.345h.009a1.712 1.712 0 0 1 1.297.564l.003.002c.288.324.456.753.475 1.202.015.275.017.751-.082 1.247-.092.46-.276.96-.64 1.323.088-.005.179-.01.269-.01.43-.025.853.12 1.193.407l.003.002Zm-1.19-.208c.38-.024.754.103 1.058.36.337.293.438.782.474 1.275.007.108.012.216.015.323l.002.056a.104.104 0 0 1-.009.052.11.11 0 0 1-.017.07.09.09 0 0 1-.054.038 8.44 8.44 0 0 1-2.51.361c-.105.003-.205.003-.307.003a8.258 8.258 0 0 1-2.21-.231l-.004-.001c-.155-.035-.349-.08-.45-.192a.261.261 0 0 1-.068-.18c.002-.226.023-.45.063-.67a1.49 1.49 0 0 1 .432-.905 1.486 1.486 0 0 1 1.054-.36 4.645 4.645 0 0 1 .409.019h.012l.06.003a2.884 2.884 0 0 1-.034-.305 1.323 1.323 0 0 1-.288-.255c-.379-.45-.443-1.093-.478-1.764-.027-.322.01-.646.107-.95.12-.313.315-.58.566-.772.25-.19.543-.296.846-.305.025 0 .05 0 .074.003a1.511 1.511 0 0 1 1.26.745 1.716 1.716 0 0 1 .139.294 1.811 1.811 0 0 1 .108.58c.01.253.008.65-.065 1.067-.088.5-.279 1.03-.672 1.373a2.224 2.224 0 0 1-.03.291l.091-.004h.003l.111-.008c.105-.006.21-.011.312-.011Zm-2.377-.932c.116.211.276.388.465.516.19.127.403.202.623.218a.65.65 0 0 0 .256-.048c.532-.21.871-.677 1.014-1.39a4.73 4.73 0 0 0 .072-1.105v-.002a1.729 1.729 0 0 0-.095-.48 1.46 1.46 0 0 0-.126-.256 1.307 1.307 0 0 0-.492-.466 1.58 1.58 0 0 0-.46-.167 1.003 1.003 0 0 0-.144-.011 1.14 1.14 0 0 0-.438.105 1.445 1.445 0 0 0-.724.593c-.165.305-.242.66-.22 1.017.015.464.034 1.04.269 1.476Zm.124-2.391c-.145.27-.213.585-.193.902v.007c.015.476.036 1 .245 1.387.101.184.24.336.4.445.16.107.339.17.521.184a.45.45 0 0 0 .172-.033h.002c.64-.255 1.002-.962.961-2.265a1.534 1.534 0 0 0-.085-.459 1.144 1.144 0 0 0-.524-.613l-.003-.002a1.364 1.364 0 0 0-.397-.144.803.803 0 0 0-.107-.01.954.954 0 0 0-.357.088l-.008.004-.008.003a1.244 1.244 0 0 0-.62.506Zm1.105 4.253a.78.78 0 0 1-.19.027c-.316 0-.547-.25-.668-.722h-.006a6.955 6.955 0 0 1-.216.005l-.216-.002a1.49 1.49 0 0 0-.916.233c-.427.29-.49.888-.518 1.476a6.924 6.924 0 0 0 2.503.355l.168-.001.163-.001h.001a8.317 8.317 0 0 0 2.39-.333h.003a9.28 9.28 0 0 0-.018-.315c-.034-.442-.13-.93-.5-1.181a1.476 1.476 0 0 0-.905-.233l-.223.002a4.85 4.85 0 0 1-.266-.007.973.973 0 0 1-.207.44.814.814 0 0 1-.38.257Zm.737-.491a1.152 1.152 0 0 1-.205.363c-.126.15-.29.262-.473.32l-.008.002a.977.977 0 0 1-.24.033h-.002a.736.736 0 0 1-.553-.248 1.29 1.29 0 0 1-.262-.47l-.074.001h-.002l-.23-.003a1.29 1.29 0 0 0-.79.201c-.16.11-.262.282-.327.514a3.247 3.247 0 0 0-.094.652 6.713 6.713 0 0 0 2.287.298h.01l.164-.001h.001l.165-.001.001.08.001-.08c.736.006 1.47-.09 2.184-.283a3.287 3.287 0 0 0-.08-.62c-.063-.248-.167-.441-.34-.559a1.276 1.276 0 0 0-.78-.2h-.013l-.225.002-.115-.001Zm-.333-.318a1.016 1.016 0 0 0 .03-.224 1.372 1.372 0 0 1-.413.157.582.582 0 0 1-.13.015 1.251 1.251 0 0 1-.596-.189c.01.072.024.16.046.252.066.278.201.594.471.594a.53.53 0 0 0 .248-.072.92.92 0 0 0 .268-.328.916.916 0 0 0 .07-.185l.006-.02Zm-.454.366a.723.723 0 0 0 .2-.25l.003-.008a.968.968 0 0 1-.09.02.781.781 0 0 1-.171.02h-.01a1.443 1.443 0 0 1-.31-.051c.013.038.027.075.043.11.07.155.14.196.194.198a.328.328 0 0 0 .14-.04Z"
36
+ fill="#528693"
37
+ />
38
+ <path
39
+ d="M15.598 11.362a8.316 8.316 0 0 1-2.392.334l-.332.002a6.924 6.924 0 0 1-2.503-.355c.028-.588.091-1.186.519-1.476a1.49 1.49 0 0 1 .916-.233l.216.002c.072 0 .146-.002.222-.005.12.472.351.722.667.722a.764.764 0 0 0 .19-.027.814.814 0 0 0 .38-.257.972.972 0 0 0 .206-.44c.091.005.18.007.267.007l.222-.002c.316-.024.631.057.906.233.461.312.495.993.516 1.495Z"
40
+ fill="#BFF6F8"
41
+ />
42
+ <path
43
+ d="M13.537 9.293c-.005.15-.041.298-.107.43a.92.92 0 0 1-.268.327.53.53 0 0 1-.247.072c-.36 0-.48-.56-.518-.846.184.113.388.177.597.188a.582.582 0 0 0 .13-.014c.143-.028.283-.081.413-.157Zm.768-2.598c.04 1.327-.326 2.153-1.088 2.455a.65.65 0 0 1-.256.048 1.278 1.278 0 0 1-.623-.219 1.48 1.48 0 0 1-.465-.515c-.235-.436-.254-1.012-.269-1.476a1.886 1.886 0 0 1 .22-1.017c.178-.28.432-.488.724-.593.14-.064.288-.1.438-.106.048 0 .096.005.144.012.16.03.314.087.46.167.277.147.498.403.618.721.058.167.091.344.097.523Z"
44
+ fill="#fff"
45
+ />
46
+ <path
47
+ d="M13.052 9.452a2.827 2.827 0 0 0-1.853-.559c-.244 0-.493.015-.744.03l-.16.007c.03-.15.046-.3.053-.453 1.296-1.007 1.333-3.037 1.285-3.863a2.546 2.546 0 0 0-.745-1.677A2.796 2.796 0 0 0 9 2.163c-.041-.004-.085-.004-.13-.004A2.757 2.757 0 0 0 6.4 3.833c-.17.473-.234.978-.189 1.478.063 1.045.174 2.045.837 2.745.148.155.318.289.504.396.01.16.03.318.06.474l-.104-.003c-.252-.015-.497-.03-.737-.03a2.813 2.813 0 0 0-1.845.56 2.22 2.22 0 0 0-.756 1.407c-.07.343-.108.691-.11 1.04.003.4.529.505.914.582l.167.034c1.217.25 2.458.36 3.7.326.178 0 .352 0 .535-.004 1.483.01 2.96-.179 4.393-.563a.158.158 0 0 0 .126-.167.146.146 0 0 0 .015-.082c-.029-.944-.118-2-.858-2.574ZM7.04 7.445c-.412-.678-.445-1.575-.47-2.297a2.667 2.667 0 0 1 .384-1.582 2.49 2.49 0 0 1 1.267-.922c.244-.1.504-.155.767-.165.084.001.168.007.252.019.279.048.55.135.804.26.486.227.871.627 1.081 1.122.103.258.16.533.17.81.073 2.066-.57 3.351-1.903 3.821a1.265 1.265 0 0 1-.448.075A2.423 2.423 0 0 1 7.04 7.445Zm2.91 1.289a1.482 1.482 0 0 1-.655 1.178 1.016 1.016 0 0 1-.434.11c-.63 0-.84-.87-.905-1.314.321.175.678.275 1.044.292.076 0 .152-.007.226-.022.252-.044.496-.127.724-.244Zm-.576 3.737c-.193 0-.385.004-.582.004-1.48.057-2.96-.13-4.38-.552.047-.915.158-1.845.907-2.297a2.865 2.865 0 0 1 1.603-.363l.378.004c.126 0 .255-.004.389-.007.21.733.614 1.122 1.166 1.122.113-.001.224-.015.334-.041a1.446 1.446 0 0 0 1.025-1.085c.16.007.315.011.467.011l.389-.004a2.837 2.837 0 0 1 1.585.363c.808.486.867 1.545.906 2.327a16.257 16.257 0 0 1-4.189.518h.002Z"
48
+ fill="#528693"
49
+ />
50
+ <path
51
+ d="M13.558 11.953a16.257 16.257 0 0 1-4.185.518c-.193 0-.385.004-.582.004-1.48.057-2.96-.13-4.38-.552.049-.915.16-1.845.908-2.297a2.864 2.864 0 0 1 1.603-.363l.378.004c.126 0 .256-.004.389-.007.211.733.615 1.122 1.167 1.122a1.51 1.51 0 0 0 .333-.041 1.445 1.445 0 0 0 1.026-1.085c.16.007.315.011.466.011l.39-.004a2.837 2.837 0 0 1 1.585.363c.806.486.865 1.545.902 2.327Z"
52
+ fill="#BFF6F8"
53
+ />
54
+ <path
55
+ d="M9.952 8.734a1.482 1.482 0 0 1-.656 1.178 1.015 1.015 0 0 1-.433.11c-.63 0-.841-.87-.906-1.314.322.175.679.275 1.045.292.075 0 .151-.007.226-.022.252-.045.496-.127.724-.244Zm1.343-4.042c.072 2.064-.57 3.349-1.903 3.82a1.265 1.265 0 0 1-.448.073 2.423 2.423 0 0 1-1.904-1.14c-.412-.678-.445-1.575-.47-2.297a2.667 2.667 0 0 1 .385-1.582 2.49 2.49 0 0 1 1.266-.922c.244-.1.504-.156.767-.165.084.001.168.007.252.019.279.047.55.135.804.259.486.228.871.628 1.081 1.122.103.26.16.535.17.813Z"
56
+ fill="#fff"
57
+ />
58
+ </svg>
59
+ );
60
+ });
61
+
62
+ People.displayName = 'PeopleIcon';
@@ -0,0 +1,55 @@
1
+ import { forwardRef, SVGProps } from 'react';
2
+
3
+ type PlansAndPricingProps = SVGProps<SVGSVGElement>;
4
+
5
+ type PlansAndPricingRef = SVGSVGElement;
6
+
7
+ export const PlansAndPricing = forwardRef<PlansAndPricingRef, PlansAndPricingProps>((delegated, ref) => {
8
+ return (
9
+ <svg ref={ref} width="17" height="16" viewBox="0 0 17 16" fill="none" {...delegated}>
10
+ <path
11
+ d="M3.778 2.4414c0-.5523.4476-1 1-1h6.0587l3.2942 2.8235v9.353c0 .5523-.4478 1-1 1h-8.353c-.5523 0-1-.4477-1-1V2.4414Z"
12
+ fill="#BFF6F8"
13
+ />
14
+ <path
15
+ fillRule="evenodd"
16
+ clipRule="evenodd"
17
+ d="M10.6518 1.9414H4.7779a.5.5 0 0 0-.5.5V13.618a.5.5 0 0 0 .5.5h8.353a.5.5 0 0 0 .5-.5v-9.123l-2.9791-2.5535Zm.1849-.5H4.7779c-.5523 0-1 .4477-1 1V13.618c0 .5523.4477 1 1 1h8.353c.5522 0 1-.4477 1-1v-9.353l-3.2942-2.8235Z"
18
+ fill="#528693"
19
+ />
20
+ <path d="M11.0814 4.4614a.5.5 0 0 1-.5288-.5562l.2838-2.464L14.131 4.265l-3.0496.1964Z" fill="#fff" />
21
+ <path
22
+ fillRule="evenodd"
23
+ clipRule="evenodd"
24
+ d="m11.2255 2.4332-.1762 1.5292 1.8234-.1174-1.6472-1.4118Zm-.6729 1.472a.5.5 0 0 0 .5288.5562l3.0496-.1964-3.2946-2.8238-.2838 2.464Z"
25
+ fill="#528693"
26
+ />
27
+ <path
28
+ fillRule="evenodd"
29
+ clipRule="evenodd"
30
+ d="M3.4757 10.6548c-.9843-.1406-.918-1.583.0751-1.6326l.333.0292.0274.5466-.333-.0292c-.331.0165-.3532.4973-.025.5442l6.4871.9268L8.959 9.598a.2737.2737 0 0 1 .4378-.3284l1.4777 1.9703a.2737.2737 0 0 1-.0547.3832l-1.9704 1.4777a.2737.2737 0 0 1-.3283-.4379l1.4418-1.0813-6.4872-.9268Z"
31
+ fill="#fff"
32
+ />
33
+ <path
34
+ fillRule="evenodd"
35
+ clipRule="evenodd"
36
+ d="m3.5583 8.6213.7076.0621.0568 1.1355 4.8182.6883-.502-.6692a.6737.6737 0 0 1 1.0779-.8084L11.1945 11a.6736.6736 0 0 1-.1348.9431l-1.9703 1.4777a.6736.6736 0 0 1-.8083-1.0779l.6692-.5019-5.5312-.7902c-1.4638-.2092-1.3653-2.3543.1117-2.4282l.0275-.0013Zm-.0826 2.0335c-.9843-.1406-.918-1.583.0751-1.6326l.333.0292.0274.5466-.333-.0292a.308.308 0 0 0-.0685.011c-.264.0743-.2604.4898.0434.5332l6.4872.9268L8.9589 9.598a.2737.2737 0 0 1 .4379-.3284l1.4777 1.9703a.2738.2738 0 0 1-.0547.3832l-1.9704 1.4777a.2737.2737 0 0 1-.3283-.4379l1.4417-1.0813-6.487-.9268Z"
37
+ fill="#528693"
38
+ />
39
+ <path
40
+ fillRule="evenodd"
41
+ clipRule="evenodd"
42
+ d="M14.5734 6.6087c.9087.1299.8475 1.4614-.0694 1.5073l-.4259.0551-.0253-.5046.426-.0552c.3056-.0153.326-.4591.0231-.5024L8.513 6.2533l.9983 1.331a.2526.2526 0 1 1-.4042.3032l-1.3642-1.819a.2526.2526 0 0 1 .0505-.3537l1.819-1.3642a.2526.2526 0 1 1 .3031.4042l-1.331.9983 5.9889.8556Z"
43
+ fill="#fff"
44
+ />
45
+ <path
46
+ fillRule="evenodd"
47
+ clipRule="evenodd"
48
+ d="M14.5734 6.6087c.9087.1299.8475 1.4614-.0693 1.5073l-.426.0551-.0253-.5046.426-.0552c.3056-.0153.326-.4591.0231-.5024l-5.9888-.8556.9982 1.331a.2526.2526 0 0 1-.4042.3032l-1.3642-1.819a.2513.2513 0 0 1-.039-.2273.2514.2514 0 0 1 .0895-.1264l1.819-1.3642a.2526.2526 0 0 1 .3032.4042l-1.331.9983 5.9888.8556Zm-4.9763-1.115 5.0329.719c1.3826.1976 1.2955 2.2162-.0889 2.3018l-.8409.109-.0617-1.2339-4.226-.6037.4188.5584a.6526.6526 0 1 1-1.0442.7832l-1.3642-1.819a.6526.6526 0 0 1 .1305-.9137l1.819-1.3642a.6526.6526 0 0 1 .7832 1.0442l-.5585.4189Z"
49
+ fill="#528693"
50
+ />
51
+ </svg>
52
+ );
53
+ });
54
+
55
+ PlansAndPricing.displayName = 'PlansAndPricingIcon';
@@ -0,0 +1,42 @@
1
+ import { forwardRef, SVGProps } from 'react';
2
+
3
+ type ProductProps = SVGProps<SVGSVGElement>;
4
+
5
+ type ProductRef = SVGSVGElement;
6
+
7
+ export const Product = forwardRef<ProductRef, ProductProps>((delegated, ref) => {
8
+ return (
9
+ <svg ref={ref} width="34" height="34" viewBox="0 0 34 34" fill="none" {...delegated}>
10
+ <path
11
+ d="M30.14 8.196a5.316 5.316 0 0 0-7.567-.609c-.02-.01-.02-.03-.03-.042a10.505 10.505 0 0 0-10.024-2.067 5.313 5.313 0 0 0-7.902-1.154c-2.887 2.382-2.561 6.759-.1 9.288a.346.346 0 0 0 .272.126 16.462 16.462 0 0 0 .368 11.271c2.392 5.448 8.68 6.728 14.063 5.698 6.559-1.25 9.373-6.717 8.496-12.951a13.94 13.94 0 0 0 2.109-1.628 6.065 6.065 0 0 0 .316-7.932ZM4.754 5.216a4.578 4.578 0 0 1 7.021.524 10.141 10.141 0 0 0-3.478 2.141 13.557 13.557 0 0 0-3.26 5.143c-2.014-2.078-2.445-5.627-.283-7.808Zm14.252 24.747c-5.397.976-11.565-.43-13.476-6.171-1.574-4.733-.631-11.041 2.767-14.766 3.399-3.725 9.817-4.45 13.694-.924.01.01.02.01.032.021a6.367 6.367 0 0 0 .7 8.91 5.19 5.19 0 0 0 4.533.872c.283 5.877-1.867 10.903-8.25 12.058Zm3.831-13.885a5.53 5.53 0 0 1 .357-7.996 4.552 4.552 0 0 1 6.969 1.542c2.183 4.27-3.339 10.473-7.326 6.454Z"
12
+ fill="#528693"
13
+ />
14
+ <path
15
+ d="M15.605 18.271c-.073.441-.2.872-.241 1.323-.036.419-.05.839-.042 1.26-.011.377-.62.482-.683.083a4.85 4.85 0 0 1 .43-2.899c.169-.301.578-.07.536.233ZM10.252 16.939c-.073.44-.2.882-.24 1.332-.036.416-.05.833-.044 1.25-.01.378-.618.493-.681.094-.16-.988-.01-2 .43-2.899.168-.313.578-.082.535.223Z"
16
+ fill="#528693"
17
+ />
18
+ <path
19
+ d="M30.215 8.138a5.198 5.198 0 0 0-4.088-1.95 5.63 5.63 0 0 0-3.538 1.26 10.142 10.142 0 0 0-6.856-2.53c-1.072.001-2.138.15-3.169.44a5.705 5.705 0 0 0-4.538-2.407A5.38 5.38 0 0 0 4.558 4.25a5.734 5.734 0 0 0-2.09 4.198 7.069 7.069 0 0 0 1.97 5.227c.056.07.133.119.22.14a16.514 16.514 0 0 0 .4 11.234c1.699 3.868 5.627 6.087 10.765 6.087 1.144 0 2.285-.11 3.408-.328 6.167-1.17 9.535-6.297 8.556-12.994.02-.021.12-.081.21-.141a10.2 10.2 0 0 0 1.889-1.47 6.152 6.152 0 0 0 .329-8.065ZM4.827 5.288A4.435 4.435 0 0 1 8.005 3.91a4.64 4.64 0 0 1 3.608 1.788 9.881 9.881 0 0 0-3.378 2.108 13.573 13.573 0 0 0-3.237 5.03c-1.79-1.948-2.36-5.339-.171-7.546Zm14.164 24.58c-1.026.186-2.066.28-3.108.279-5.168 0-8.906-2.33-10.256-6.387-1.649-4.947-.49-11.115 2.75-14.663a10.164 10.164 0 0 1 7.436-3.189 9.085 9.085 0 0 1 6.067 2.22 6.248 6.248 0 0 0-1.44 4.557 6.305 6.305 0 0 0 2.22 4.428 5.121 5.121 0 0 0 3.208 1.07 5.43 5.43 0 0 0 1.29-.15c.288 6.626-2.62 10.824-8.167 11.835Zm10.685-15.154a4.934 4.934 0 0 1-3.988 2.559 3.824 3.824 0 0 1-2.779-1.268 5.524 5.524 0 0 1-1.5-4.21 4.955 4.955 0 0 1 1.85-3.638 4.638 4.638 0 0 1 2.849-.99 4.416 4.416 0 0 1 3.968 2.5 5.199 5.199 0 0 1-.401 5.047h.001Z"
20
+ fill="#528693"
21
+ />
22
+ <path
23
+ d="M11.614 5.697a9.882 9.882 0 0 0-3.379 2.108 13.573 13.573 0 0 0-3.237 5.03c-1.79-1.948-2.36-5.338-.17-7.546a4.435 4.435 0 0 1 3.178-1.38 4.64 4.64 0 0 1 3.608 1.788ZM29.675 14.714a4.932 4.932 0 0 1-3.988 2.559 3.824 3.824 0 0 1-2.779-1.268 5.524 5.524 0 0 1-1.5-4.21 4.954 4.954 0 0 1 1.85-3.638 4.638 4.638 0 0 1 2.849-.99 4.416 4.416 0 0 1 3.968 2.5 5.197 5.197 0 0 1-.4 5.047Z"
24
+ fill="#bff6f8"
25
+ />
26
+ <path
27
+ d="M27.156 18.032a5.437 5.437 0 0 1-1.29.15 5.123 5.123 0 0 1-3.208-1.069 6.307 6.307 0 0 1-2.219-4.428 6.248 6.248 0 0 1 1.44-4.557 9.085 9.085 0 0 0-6.067-2.22 10.164 10.164 0 0 0-7.437 3.188c-3.238 3.548-4.398 9.716-2.749 14.663 1.35 4.058 5.088 6.387 10.256 6.387a17.358 17.358 0 0 0 3.11-.278c5.546-1.01 8.454-5.209 8.164-11.835ZM9.625 16.673a.37.37 0 0 1 .32-.21.415.415 0 0 1 .3.15.427.427 0 0 1 .11.34c-.03.17-.07.34-.1.51-.068.27-.114.543-.14.82a6.266 6.266 0 0 0-.04.859l-.01.38a.465.465 0 0 1-.48.44.391.391 0 0 1-.4-.33 4.953 4.953 0 0 1 .44-2.959Zm4.667 7.957a1.698 1.698 0 0 1-1.569.859c-.22.003-.44-.03-.65-.1-.39-.14-.72-.407-.94-.759a1.519 1.519 0 0 1-1.049.43 1.499 1.499 0 0 1-1.379-1.4.357.357 0 0 1 .1-.278.457.457 0 0 1 .34-.14.365.365 0 0 1 .39.32c.04.31.23.669.61.669.27 0 .45-.2.649-.4 0-.19-.02-.31-.02-.42a.4.4 0 0 1 .41-.4.388.388 0 0 1 .384.255.4.4 0 0 1 .026.155 1.207 1.207 0 0 0 .86 1.22c.085.019.172.029.26.03a1.97 1.97 0 0 0 1.099-.48.314.314 0 0 1 .18-.06.326.326 0 0 1 .26.15.4.4 0 0 1 .04.35Zm1.31-5.838a7.647 7.647 0 0 0-.14.81 6.477 6.477 0 0 0-.04.88v.37a.464.464 0 0 1-.48.439.384.384 0 0 1-.4-.34 4.898 4.898 0 0 1 .44-2.959.367.367 0 0 1 .31-.2.434.434 0 0 1 .41.49c-.03.18-.06.341-.1.51Z"
28
+ fill="#bff6f8"
29
+ />
30
+ <path
31
+ d="M15.702 18.282c-.03.18-.06.341-.1.51a7.673 7.673 0 0 0-.14.81 6.493 6.493 0 0 0-.04.88v.37a.464.464 0 0 1-.48.439.384.384 0 0 1-.4-.34 4.898 4.898 0 0 1 .44-2.959.367.367 0 0 1 .31-.2.434.434 0 0 1 .41.49ZM10.354 16.953c-.03.17-.07.34-.1.51a5.63 5.63 0 0 0-.14.82 6.25 6.25 0 0 0-.04.859l-.01.38a.465.465 0 0 1-.48.44.391.391 0 0 1-.4-.33 4.953 4.953 0 0 1 .44-2.959.37.37 0 0 1 .32-.21.415.415 0 0 1 .3.15.425.425 0 0 1 .11.34ZM14.293 24.63a1.699 1.699 0 0 1-1.569.859c-.22.003-.44-.03-.65-.1-.39-.14-.72-.407-.94-.759a1.519 1.519 0 0 1-1.049.43 1.5 1.5 0 0 1-1.38-1.4.357.357 0 0 1 .1-.278.457.457 0 0 1 .34-.14.365.365 0 0 1 .39.32c.04.31.23.669.61.669.27 0 .45-.2.65-.4 0-.19-.02-.31-.02-.42a.4.4 0 0 1 .41-.4.388.388 0 0 1 .384.255c.018.05.027.102.025.155a1.207 1.207 0 0 0 .86 1.22c.085.019.172.029.26.03a1.97 1.97 0 0 0 1.1-.48.316.316 0 0 1 .18-.06.327.327 0 0 1 .26.15.398.398 0 0 1 .04.35Z"
32
+ fill="#528693"
33
+ />
34
+ <path
35
+ d="M14.198 24.588a1.739 1.739 0 0 1-2.088.7c-.415-.15-.76-.45-.966-.84a1.351 1.351 0 0 1-1.144.5 1.372 1.372 0 0 1-1.2-1.3c-.02-.356.579-.44.63-.083a.784.784 0 0 0 .714.755c.346 0 .557-.262.777-.493a2.85 2.85 0 0 1-.052-.42.31.31 0 0 1 .619 0 1.31 1.31 0 0 0 .934 1.322 1.73 1.73 0 0 0 1.448-.461c.213-.14.412.133.328.32Z"
36
+ fill="#528693"
37
+ />
38
+ </svg>
39
+ );
40
+ });
41
+
42
+ Product.displayName = 'ProductIcon';
@@ -0,0 +1,38 @@
1
+ import { forwardRef, SVGProps } from 'react';
2
+
3
+ type RocketProps = SVGProps<SVGSVGElement>;
4
+
5
+ type RocketRef = SVGSVGElement;
6
+
7
+ export const Rocket = forwardRef<RocketRef, RocketProps>((delegated, ref) => {
8
+ return (
9
+ <svg ref={ref} width="16" height="16" viewBox="0 0 16 16" fill="none" {...delegated}>
10
+ <path
11
+ d="M13.0339 2.1872a3.485 3.485 0 0 1 .381.0376c.0658.0094.127.0189.1928.033l.1035.0188c.0094.0047.0094.014.0094.0235l.0282.16c.0188.1316.0376.2586.0471.3903.0203.2598.0219.5208.0047.7808a6.9501 6.9501 0 0 1-.1223.8796 4.1843 4.1843 0 0 1-1.2794-.8937 6.3429 6.3429 0 0 1-.9314-1.3217 6.338 6.338 0 0 1 .795-.1082 4.6927 4.6927 0 0 1 .7714 0Zm-2.3754 4.6613a.1103.1103 0 0 0-.0376.0094.646.646 0 0 1-.1317.0236c-.0471.0094-.0894.014-.1317.0188h-.0565a1.3956 1.3956 0 0 1-.1975-.0141.0175.0175 0 0 1-.0141-.0047 1.1617 1.1617 0 0 1-.621-.2964 1.2474 1.2474 0 0 1-.1646-1.6933.0046.0046 0 0 0 .0034-.0014.0048.0048 0 0 0 .0014-.0033 1.2938 1.2938 0 0 1 .1081-.127 1.259 1.259 0 0 1 2.0932.6726 1.3067 1.3067 0 0 1-.2352 1.0207c-.0282.0282-.0518.0612-.08.0894-.0282.0282-.0705.0564-.1035.0847a.0536.0536 0 0 0-.0376.014 1.2248 1.2248 0 0 1-.3951.207Z"
12
+ fill="#fff"
13
+ />
14
+ <path
15
+ d="M10.1129 7.427a1.7704 1.7704 0 0 1-1.1712-.602 1.5881 1.5881 0 0 1-.2493-.3998c-.0047-.0047-.0047-.0094-.0094-.0141a2.0301 2.0301 0 0 1-.1035-.2822c0-.0141-.0047-.0235-.0047-.033a1.3365 1.3365 0 0 1-.047-.268.8705.8705 0 0 1-.0047-.1082c0-.047-.0095-.0941-.0047-.1364 0-.0189.0046-.033.0046-.047.0069-.092.021-.1832.0424-.2729v-.0141c.0541-.2502.167-.484.3292-.682a.197.197 0 0 1 .0753-.0565 1.0763 1.0763 0 0 1 .0988-.1082.7403.7403 0 0 1 .0893-.0705c.0048-.0047.0048-.0141.0095-.0188a.9361.9361 0 0 1 .0893-.0565 1.7606 1.7606 0 0 1 1.3406-.3434c.4418.0721.8383.3134 1.1053.6727a1.7648 1.7648 0 0 1-.1505 2.3048 1.7054 1.7054 0 0 1-.1411.1176.2888.2888 0 0 1-.0329.047c-.0329.0235-.0706.0423-.1035.0658a1.7602 1.7602 0 0 1-1.1618.3058Zm-.809-2.5352a1.2474 1.2474 0 0 0 .1646 1.6933c.1723.1592.3887.2625.6209.2964a.0172.0172 0 0 0 .0141.0047c.0654.0093.1314.014.1975.014h.0565c.0423-.0046.0846-.0093.1317-.0187a.646.646 0 0 0 .1317-.0236.1103.1103 0 0 1 .0376-.0094 1.2248 1.2248 0 0 0 .3951-.207.0539.0539 0 0 1 .0377-.014c.0329-.0283.0705-.0565.1034-.0847.033-.0282.0518-.0611.08-.0894a1.3067 1.3067 0 0 0 .2352-1.0207 1.2592 1.2592 0 0 0-2.0931-.6726 1.2939 1.2939 0 0 0-.1082.127.0047.0047 0 0 1-.0047.0047Z"
16
+ fill="#528693"
17
+ />
18
+ <path
19
+ d="M8.8005 12.1025a5.1403 5.1403 0 0 1-.682 1.2794l-.1082.1458c-.0329.033-.0987.1176-.0893.0988-.0094.0047-.0141.0094-.0236.0047-.0094-.0047 0-.0141 0-.0188.0047.0188-.0282-.1787-.0517-.2916a4.5174 4.5174 0 0 0-.4798-1.2982l.0565-.0188c.1317-.0471.2634-.1035.3904-.1553.254-.1128.5033-.2304.7385-.3621.1834-.1035.3621-.2164.5409-.3293a7.3196 7.3196 0 0 1-.2917.9454Zm.4563-7.8457a.9349.9349 0 0 0-.0894.0565c-.0047.0047-.0047.014-.0094.0188a.7411.7411 0 0 0-.0893.0705 1.0777 1.0777 0 0 0-.0988.1082.197.197 0 0 0-.0753.0565 1.6147 1.6147 0 0 0-.3292.682v.0141a1.7343 1.7343 0 0 0-.0424.2728c0 .0141-.0047.0282-.0047.047-.0047.0424.0047.0894.0047.1365a.8667.8667 0 0 0 .0047.1081c.0066.0908.0223.1806.047.2682 0 .0094.0048.0188.0048.0329.0274.0965.062.1908.1035.2822.0047.0047.0047.0094.0094.0141a1.588 1.588 0 0 0 .2493.3998 1.7592 1.7592 0 0 0 2.333.2963c.0329-.0235.0705-.0423.1035-.0658a.2888.2888 0 0 0 .0329-.047 1.7054 1.7054 0 0 0 .1411-.1176 1.765 1.765 0 0 0 .1505-2.3048 1.723 1.723 0 0 0-1.1053-.6726 1.7607 1.7607 0 0 0-1.3406.3433Zm-4.412 5.4516a7.1694 7.1694 0 0 1-.2681-.3904c-.0424-.0659-.08-.1317-.1176-.1929l-.0612-.1082.0282-.094.0612-.1882c.047-.1223.0988-.2446.1505-.3669.1082-.2446.2305-.4845.3575-.7196.265-.4654.562-.9117.889-1.3359a14.419 14.419 0 0 1 2.173-2.3 8.19 8.19 0 0 1 2.6906-1.5288c.0658-.0188.1317-.0329.1975-.0517a5.4617 5.4617 0 0 0 1.1054 1.5428c.4187.448.931.798 1.5005 1.0254-.0142.0564-.0236.1176-.0424.174a8.2196 8.2196 0 0 1-1.5381 2.747 14.7123 14.7123 0 0 1-2.3189 2.206 12.2821 12.2821 0 0 1-1.3311.8796 9.8702 9.8702 0 0 1-.7056.3528c-.1223.047-.2446.0987-.3621.1411l-.1835.0611-.08.0235-.08-.0423-.1692-.1035a12.9658 12.9658 0 0 1-.3246-.2163 1.0463 1.0463 0 0 0-.2916-.1553c.127-.127.254-.254.3857-.381.141-.1411.2822-.2869.428-.4374l1.2888-1.2841a.6352.6352 0 0 0 .0706-.094.522.522 0 0 0 .0329-.1365h-.0047a.3654.3654 0 0 0-.1035-.3434c-.0282-.0282-.0705-.0658-.1176-.1128a.0047.0047 0 0 0-.0047-.0047l-.2493-.2587-.1223-.127a1.1108 1.1108 0 0 0-.2352-.1976.3927.3927 0 0 0-.301-.0047.389.389 0 0 0-.1082.0705.0363.0363 0 0 0-.0141.0094l-.0141.0142a.0103.0103 0 0 0-.0094.0094l-.0423.0423c-.0047 0-.0047 0-.0047.0047-.5645.5645-1.1101 1.1054-1.6652 1.6604l-.3904.3904a.76.76 0 0 0-.0987-.1787Z"
20
+ fill="#BFF6F8"
21
+ />
22
+ <path
23
+ d="m4.8448 11.5992-.1976.1929c-.0047.0094-.0094.0047-.014 0-.1365-.1411-.2776-.2822-.4234-.428l.5644-.5645c.3998-.3998.795-.7902 1.2042-1.1994.094-.094.1928-.1929.2869-.2916L7.3518 8.222l.0236.0235a.0047.0047 0 0 0 .0046.0047c.1365.1411.2682.2775.3952.4046a.0141.0141 0 0 1 0 .0188 730.2544 730.2544 0 0 0-1.9144 1.9097c-.334.3339-.6727.6679-1.016 1.0159Z"
24
+ fill="#fff"
25
+ />
26
+ <path
27
+ d="M3.8335 7.2625a6.6494 6.6494 0 0 1 1.0254-.3622c-.0565.0894-.1176.1693-.174.2634a8.6195 8.6195 0 0 0-.447.856c-.0705.1506-.1316.3058-.1928.4704a6.6217 6.6217 0 0 0-.0564.1646 4.2294 4.2294 0 0 0-1.0348-.4186c-.1035-.0282-.2117-.0564-.3152-.0752-.0846-.0189-.1693-.033-.2492-.0518-.0236 0-.0283-.0094-.0142-.0188l.0047-.0047h.0048l.047-.0376c.0564-.047.1317-.094.2022-.1458a7.0379 7.0379 0 0 1 1.1995-.6397Z"
28
+ fill="#BFF6F8"
29
+ />
30
+ <path
31
+ d="M11.4675 2.2954c.2528.4785.5658.9227.9314 1.3217a4.1843 4.1843 0 0 0 1.2794.8937 6.9501 6.9501 0 0 0 .1223-.8796c.0172-.26.0156-.521-.0047-.7808-.0095-.1317-.0283-.2587-.0471-.3904l-.0282-.16c0-.0093 0-.0187-.0094-.0234l-.1035-.0188a2.7475 2.7475 0 0 0-.1928-.033 3.4826 3.4826 0 0 0-.381-.0376 4.6927 4.6927 0 0 0-.7714 0 6.3397 6.3397 0 0 0-.795.1082Zm-4.1016 9.7272c.2257.4055.3875.8434.4798 1.2982.0235.1129.0565.3104.0518.2916 0 .0047-.0047.0141 0 .0188.0047.0047.014 0 .0235-.0047-.0094.0188.0564-.0658.0893-.0988l.1082-.1458a5.1404 5.1404 0 0 0 .682-1.2794 7.3195 7.3195 0 0 0 .2917-.9454c-.1788.1129-.3575.2258-.541.3293-.2351.1317-.4844.2492-.7384.3621-.127.0518-.2587.1082-.3904.1553l-.0565.0188ZM4.9953 7.6482c-.127.2351-.2493.475-.3575.7196-.0517.1223-.1035.2446-.1505.367l-.0612.188-.0282.0941.0612.1082c.0376.0612.0752.127.1176.1929.0846.1317.174.2634.268.3904a.7599.7599 0 0 1 .0989.1787l.3903-.3904c.555-.555 1.1007-1.096 1.6652-1.6604 0-.0047 0-.0047.0046-.0047l.0424-.0423a.0104.0104 0 0 1 .0094-.0094l.0141-.0141a.0362.0362 0 0 1 .0141-.0095.3888.3888 0 0 1 .1082-.0705.3928.3928 0 0 1 .301.0047 1.111 1.111 0 0 1 .2352.1975l.1223.127.2493.2587a.0046.0046 0 0 1 .0033.0014.0046.0046 0 0 1 .0014.0033c.047.047.0894.0847.1176.113a.3655.3655 0 0 1 .1035.3433h.0047a.5214.5214 0 0 1-.033.1364.636.636 0 0 1-.0705.094L6.938 10.2494c-.1458.1505-.287.2963-.428.4374-.1317.127-.2587.254-.3857.381.1048.036.2032.0884.2916.1552.1082.0753.2164.1459.3246.2164l.1693.1035.08.0423.08-.0235.1833-.0611c.1176-.0424.24-.0941.3622-.1411a9.8702 9.8702 0 0 0 .7056-.3528 12.297 12.297 0 0 0 1.3311-.8796 14.712 14.712 0 0 0 2.3189-2.206 8.2195 8.2195 0 0 0 1.5381-2.747c.0188-.0564.0283-.1176.0424-.174a4.171 4.171 0 0 1-1.5005-1.0254 5.4617 5.4617 0 0 1-1.1054-1.5428c-.0658.0188-.1317.033-.1975.0517a8.1898 8.1898 0 0 0-2.6905 1.5287 14.419 14.419 0 0 0-2.1731 2.3001c-.327.4242-.624.8705-.889 1.3359ZM4.633 11.792c.0047.0047.0094.0094.0141 0l.1976-.1929c.3433-.348.682-.682 1.016-1.016.635-.635 1.2605-1.2605 1.9144-1.9096a.0141.0141 0 0 0 0-.0189c-.127-.127-.2588-.2634-.3952-.4045a.0047.0047 0 0 1-.0047-.0047l-.0235-.0235-1.0865 1.0866c-.0941.0987-.1929.1975-.287.2916-.4092.4092-.8043.7996-1.204 1.1994l-.5645.5645c.1458.1458.2869.2869.4233.428ZM2.954 8.2361c.362.0932.7099.234 1.0348.4186.0188-.0564.0376-.1128.0564-.1646.0612-.1646.1223-.3198.1929-.4703a8.6185 8.6185 0 0 1 .4468-.8561c.0565-.094.1176-.174.174-.2634a6.65 6.65 0 0 0-1.0253.3622 7.0371 7.0371 0 0 0-1.1995.6397c-.0705.0517-.1458.0987-.2022.1458l-.047.0376H2.38l-.0048.0047c-.014.0094-.0094.0188.0141.0188.08.0188.1647.033.2493.0518.1035.0188.2117.047.3152.0752Zm-.6068.3998-.2493-.0423a.589.589 0 0 1-.254-.0894.333.333 0 0 1-.1364-.1693.3712.3712 0 0 1-.014-.2352 2.3128 2.3128 0 0 1 .1222-.2023 3.545 3.545 0 0 1 .5315-.4045 10.695 10.695 0 0 1 1.3688-.7384 4.7461 4.7461 0 0 1 1.5146-.4234c.1599-.2257.3198-.4374.4844-.6444A14.4656 14.4656 0 0 1 8.0103 3.396a8.5346 8.5346 0 0 1 2.7141-1.4252 7.2105 7.2105 0 0 1 1.5428-.2822 5.814 5.814 0 0 1 .809.0047c.1364.0047.2728.0235.4092.0376.0706.0094.1364.0189.207.033l.1129.0235a.6198.6198 0 0 1 .1834.047.4205.4205 0 0 1 .2211.3387l.0423.2446c.0188.1552.047.3057.0517.461.022.3022.0204.6057-.0047.9078a6.9537 6.9537 0 0 1-.3527 1.7215 8.9022 8.9022 0 0 1-1.6839 2.8833 15.0926 15.0926 0 0 1-2.3519 2.2061c-.0846.0611-.174.1176-.2587.1787a5.0622 5.0622 0 0 1-.4139 1.604 6.8242 6.8242 0 0 1-.7055 1.2888l-.1318.174-.0658.0847a4.2152 4.2152 0 0 1-.1129.1364c-.1787.1411-.3292.3245-.5362.2351a.3498.3498 0 0 1-.2023-.1693.2957.2957 0 0 1-.0517-.1458c-.0141-.0611-.0235-.1176-.033-.1693l-.0423-.2399-.0376-.1741a3.8788 3.8788 0 0 0-.508-1.2794.0798.0798 0 0 1-.0047-.0329l-.0658-.0329-.0988-.0611-.1835-.1082a5.7683 5.7683 0 0 1-.348-.2399.8514.8514 0 0 1-.2729-.2916l-.1693.1693a36.5512 36.5512 0 0 1-.428.4233c-.0753.0753-.1505.1458-.2258.2211a.4467.4467 0 0 1-.508.1834.3962.3962 0 0 1-.1693-.1176l-.1176-.1129c-.0518-.0564-.0988-.1081-.1505-.1552-.1176-.1176-.2258-.2257-.3199-.3245a.3934.3934 0 0 1-.0235-.5362l.287-.287c.1551-.1552.301-.3057.4515-.4515l.1975-.1976a.607.607 0 0 1-.207-.174c-.1222-.1646-.2398-.334-.3339-.4845-.047-.0705-.0894-.1411-.127-.1975a1.225 1.225 0 0 0-.0611-.113.0697.0697 0 0 1-.0612 0 3.5599 3.5599 0 0 0-1.0771-.4562l-.2964-.0752-.1505-.033Z"
32
+ fill="#528693"
33
+ />
34
+ </svg>
35
+ );
36
+ });
37
+
38
+ Rocket.displayName = 'RocketIcon';
@@ -0,0 +1,77 @@
1
+ import { forwardRef, SVGProps } from 'react';
2
+
3
+ type StockLocationProps = SVGProps<SVGSVGElement>;
4
+
5
+ type StockLocationRef = SVGSVGElement;
6
+
7
+ export const StockLocation = forwardRef<StockLocationRef, StockLocationProps>((delegated, ref) => {
8
+ return (
9
+ <svg ref={ref} width="17" height="16" viewBox="0 0 17 16" fill="none" {...delegated}>
10
+ <path
11
+ d="m8.957 14.609-4.604-1.785a.174.174 0 0 1-.11-.162v-2.25l-1.441-.578a.174.174 0 0 1-.059-.284l1.5-1.506-1.311-1.436a.174.174 0 0 1 .066-.28L7.34 4.66l1.617 1.49 1.617-1.625c1.526.61 4.593 1.84 4.647 1.895.054.054-1.055 1.105-1.616 1.624l1.615 1.503a.174.174 0 0 1-.056.29l-1.492.576v2.183a.174.174 0 0 1-.109.162l-4.606 1.85Z"
12
+ fill="#BFF6F8"
13
+ />
14
+ <path d="M13.605 8.044 8.957 9.871 4.242 8.044 8.957 6.15l4.648 1.895Z" fill="#B1DDDF" />
15
+ <path
16
+ fillRule="evenodd"
17
+ clipRule="evenodd"
18
+ d="m10.523 4.28.128.051c.764.305 1.912.765 2.877 1.156.482.196.92.374 1.24.507a26.653 26.653 0 0 1 .498.214.942.942 0 0 1 .04.02.391.391 0 0 1 .02.011.217.217 0 0 1 .103.22.255.255 0 0 1-.024.074.494.494 0 0 1-.048.076 2.17 2.17 0 0 1-.133.156 13.28 13.28 0 0 1-.434.442c-.281.275-.613.59-.879.837l1.45 1.35a.382.382 0 0 1-.122.637l-1.358.525v2.04a.383.383 0 0 1-.24.355l-4.683 1.882-4.68-1.814a.383.383 0 0 1-.245-.357v-2.108l-1.31-.526a.382.382 0 0 1-.127-.625l1.358-1.365-1.176-1.29a.382.382 0 0 1 .145-.614l4.464-1.715L8.95 5.86l1.572-1.58ZM8.748 6.458v3.109L4.81 8.041l3.938-1.583Zm-4.45 1.339 4.275-1.718-1.279-1.177L3.12 6.505 4.3 7.797ZM3.074 6.524Zm1.22 1.764 4.303 1.667-1.377 1.494-2.897-1.229-1.394-.56 1.366-1.372Zm2.91 3.18Zm1.545-1.062L7.51 11.75a.383.383 0 0 1-.431.093L4.45 10.728v1.91l4.297 1.666v-3.898Zm.418 3.894 4.297-1.727V10.73l-2.56 1.11a.382.382 0 0 1-.429-.085L9.166 10.39V14.3Zm.157-4.348 1.435 1.498 2.835-1.23 1.444-.558-1.478-1.375-4.236 1.665ZM13.56 7.8c.274-.254.636-.596.937-.892.16-.157.301-.299.402-.407a35.03 35.03 0 0 0-.292-.123c-.318-.132-.754-.31-1.236-.505a618.53 618.53 0 0 0-2.747-1.104L9.326 6.074l4.234 1.727Zm-.517.24L9.166 6.46v3.105l3.877-1.524Z"
19
+ fill="#528693"
20
+ />
21
+ <path
22
+ d="M8.97.698a2.845 2.845 0 0 0-2.848 2.844c0 1.21 1.678 4.014 2.455 5.255a.463.463 0 0 0 .781 0c.777-1.241 2.455-4.045 2.455-5.255a2.843 2.843 0 0 0-.832-2.011A2.842 2.842 0 0 0 8.97.698Zm0 4.117a1.147 1.147 0 1 1-.01-2.293 1.147 1.147 0 0 1 .01 2.293Z"
23
+ fill="#fff"
24
+ />
25
+ <path
26
+ d="M8.45 2.842c.003-.004.003 0 .003 0a.004.004 0 0 1-.004.004v-.004ZM8.46 2.834c0 .003-.004.003-.007.006a.01.01 0 0 1 .003-.006h.003Zm.027-.013-.003.004V2.82h.003Zm.069-.034a.012.012 0 0 0-.007.004.013.013 0 0 1-.01.003.075.075 0 0 0-.018.01h-.003a.072.072 0 0 1 .02-.014c.007-.003.01-.006.017-.003Zm.037-.022h.003c-.003.004-.007.004-.01.007-.003.004-.01.004-.014.007-.003.004-.003.004-.007.004H8.56a.08.08 0 0 1 .034-.017Zm.01-.002c0-.003.003 0 .003 0a.003.003 0 0 1-.003.003H8.6l.003-.003Zm1.206.418a1.02 1.02 0 0 0-.538-.435c-.003-.004-.003-.004-.007-.004a.217.217 0 0 0-.024-.006.02.02 0 0 0-.013-.004.091.091 0 0 0-.041-.01c-.004-.003-.004-.003-.007-.003-.004 0-.014-.004-.02-.004a.007.007 0 0 0-.006-.002.007.007 0 0 0-.005.002h-.003a.012.012 0 0 0-.007-.003h-.004c-.003-.004-.003-.004-.007 0h-.003c0-.004-.003-.004-.007-.004H9.11a.068.068 0 0 0-.027-.003.153.153 0 0 0-.038-.004h-.024a.037.037 0 0 1-.02-.003h-.004c-.007.003-.01 0-.013 0H8.96a.075.075 0 0 0-.028.003h-.03a.02.02 0 0 0-.015.004h-.03a.03.03 0 0 1-.017.003h-.007a.02.02 0 0 1-.014.004h-.01a.02.02 0 0 0-.014.003h-.01a.043.043 0 0 0-.02.004.013.013 0 0 0-.011.003.123.123 0 0 0-.038.007.361.361 0 0 0-.065.02.147.147 0 0 0-.017.004.013.013 0 0 1-.01.003c.003-.003.007-.007.01-.007a.585.585 0 0 1 .103-.03c.003-.004.003-.007.007-.004a.622.622 0 0 1 .106-.017c.007 0 .013-.003.02 0a.277.277 0 0 1 .052-.003.006.006 0 0 1 .01 0 .415.415 0 0 1 .065-.004.791.791 0 0 1 .318.065h.004c.003.004.003.004.007.004a.049.049 0 0 1 .02.007l.004.003.037.017a.107.107 0 0 1 .035.017c.006.004.017.007.024.01a.072.072 0 0 0 .02.014.314.314 0 0 1 .027.017.666.666 0 0 1 .086.062c.047.039.09.08.13.127a.363.363 0 0 1 .034.04.13.13 0 0 1 .031.045.12.12 0 0 1 .017.028.12.12 0 0 1 .017.027v.007Zm.007.007v.003c-.004-.003-.004-.007-.007-.01.007 0 .007.003.007.007Z"
27
+ fill="#528693"
28
+ />
29
+ <path
30
+ d="m9.939 3.585-.004-.004a.1.1 0 0 1-.006-.03.94.94 0 0 0-.093-.326.004.004 0 0 0 0-.002.003.003 0 0 0-.003-.001c0-.004-.004-.004-.004-.007a.019.019 0 0 0-.01-.017c0-.003-.003-.003-.003-.007a.23.23 0 0 1 .037.062c.004.007.007.01.007.017a.046.046 0 0 1 .01.027l.004.004a.066.066 0 0 1 .01.034l.004.003a.025.025 0 0 1 .006.02.025.025 0 0 1 .007.022.441.441 0 0 1 .02.085v.007a.453.453 0 0 1 .018.113Zm.329-.075a.171.171 0 0 1-.007.061 1.305 1.305 0 0 0-.195-.613c.113.164.183.353.202.552ZM7.073 6.574c-.034-.054-.062-.11-.093-.167A16.294 16.294 0 0 1 6.402 5.2a6.22 6.22 0 0 1-.425-1.315.577.577 0 0 1 0-.133 1.627 1.627 0 0 0 .051.318 7.89 7.89 0 0 0 .439 1.247c.185.427.39.846.606 1.256Zm3.89-1.023a20.5 20.5 0 0 1-.332.674c-.387.74-.809 1.459-1.25 2.178l-.165.267a.288.288 0 0 1-.147.134.278.278 0 0 1-.335-.11 38.421 38.421 0 0 1-.672-1.113c-.037-.065-.075-.13-.11-.195.275.466.542.907.802 1.318a.274.274 0 0 0 .308.093.325.325 0 0 0 .13-.106l.155-.254c.208-.332.41-.671.61-1.01.345-.6.684-1.212 1.006-1.876ZM8.449 2.842c.004-.004.004 0 .004 0a.004.004 0 0 1-.004.004v-.004ZM8.46 2.834c0 .003-.004.003-.007.006a.01.01 0 0 1 .003-.006h.003Zm.027-.013-.003.004V2.82h.003Zm.069-.034a.012.012 0 0 0-.007.004.013.013 0 0 1-.01.003.075.075 0 0 0-.018.01h-.003a.072.072 0 0 1 .02-.014c.007-.003.01-.006.017-.003Zm.037-.022h.003c-.003.004-.007.004-.01.007-.003.004-.01.004-.014.007-.003.004-.003.004-.007.004H8.56a.08.08 0 0 1 .034-.017Zm.01-.002c0-.003.003 0 .003 0a.003.003 0 0 1-.003.003H8.6l.003-.003Zm1.206.418a1.02 1.02 0 0 0-.538-.435c-.003-.004-.003-.004-.007-.004a.217.217 0 0 0-.024-.006.02.02 0 0 0-.013-.004.091.091 0 0 0-.041-.01c-.004-.003-.004-.003-.007-.003-.004 0-.014-.004-.02-.004a.007.007 0 0 0-.006-.002.007.007 0 0 0-.005.002h-.003a.012.012 0 0 0-.007-.003h-.004c-.003-.004-.003-.004-.007 0h-.003c0-.004-.003-.004-.007-.004H9.11a.068.068 0 0 0-.027-.003.153.153 0 0 0-.038-.004h-.024a.037.037 0 0 1-.02-.003h-.004c-.007.003-.01 0-.013 0H8.96a.075.075 0 0 0-.028.003h-.03a.02.02 0 0 0-.015.004h-.03a.03.03 0 0 1-.017.003h-.007a.02.02 0 0 1-.014.004h-.01a.02.02 0 0 0-.014.003h-.01a.043.043 0 0 0-.02.004.013.013 0 0 0-.011.003.123.123 0 0 0-.038.007.361.361 0 0 0-.065.02.147.147 0 0 0-.017.004.013.013 0 0 1-.01.003c.003-.003.007-.007.01-.007a.585.585 0 0 1 .103-.03c.003-.004.003-.007.007-.004a.622.622 0 0 1 .106-.017c.007 0 .013-.003.02 0a.277.277 0 0 1 .052-.003.006.006 0 0 1 .01 0 .415.415 0 0 1 .065-.004.791.791 0 0 1 .318.065h.004c.003.004.003.004.007.004a.049.049 0 0 1 .02.007l.004.003.037.017a.107.107 0 0 1 .035.017c.006.004.017.007.024.01a.072.072 0 0 0 .02.014.314.314 0 0 1 .027.017.666.666 0 0 1 .086.062c.047.039.09.08.13.127a.363.363 0 0 1 .034.04.13.13 0 0 1 .031.045.12.12 0 0 1 .017.028.12.12 0 0 1 .017.027v.007Zm.007.007v.003c-.004-.003-.004-.007-.007-.01.007 0 .007.003.007.007Z"
31
+ fill="#528693"
32
+ />
33
+ <path
34
+ d="m9.939 3.585-.004-.004a.1.1 0 0 1-.006-.03.94.94 0 0 0-.093-.326.004.004 0 0 0 0-.002.003.003 0 0 0-.003-.001c0-.004-.004-.004-.004-.007a.019.019 0 0 0-.01-.017c0-.003-.003-.003-.003-.007a.23.23 0 0 1 .037.062c.004.007.007.01.007.017a.046.046 0 0 1 .01.027l.004.004a.066.066 0 0 1 .01.034l.004.003a.025.025 0 0 1 .006.02.025.025 0 0 1 .007.022.441.441 0 0 1 .02.085v.007a.453.453 0 0 1 .018.113Zm.329-.075a.171.171 0 0 1-.007.061 1.305 1.305 0 0 0-.195-.613c.113.164.183.353.202.552Zm-1.819-.668c.004-.004.004 0 .004 0a.004.004 0 0 1-.004.004v-.004ZM8.46 2.834c0 .003-.004.003-.007.006a.01.01 0 0 1 .003-.006h.003Zm.027-.013-.003.004V2.82h.003Zm.069-.034a.012.012 0 0 0-.007.004.013.013 0 0 1-.01.003.075.075 0 0 0-.018.01h-.003a.072.072 0 0 1 .02-.014c.007-.003.01-.006.017-.003Zm.037-.022h.003c-.003.004-.007.004-.01.007-.003.004-.01.004-.014.007-.003.004-.003.004-.007.004H8.56a.08.08 0 0 1 .034-.017Zm.01-.002c0-.003.003 0 .003 0a.003.003 0 0 1-.003.003H8.6l.003-.003Zm1.206.418a1.02 1.02 0 0 0-.538-.435c-.003-.004-.003-.004-.007-.004a.217.217 0 0 0-.024-.006.02.02 0 0 0-.013-.004.091.091 0 0 0-.041-.01c-.004-.003-.004-.003-.007-.003-.004 0-.014-.004-.02-.004a.007.007 0 0 0-.006-.002.007.007 0 0 0-.005.002h-.003a.012.012 0 0 0-.007-.003h-.004c-.003-.004-.003-.004-.007 0h-.003c0-.004-.003-.004-.007-.004H9.11a.068.068 0 0 0-.027-.003.153.153 0 0 0-.038-.004h-.024a.037.037 0 0 1-.02-.003h-.004c-.007.003-.01 0-.013 0H8.96a.075.075 0 0 0-.028.003h-.03a.02.02 0 0 0-.015.004h-.03a.03.03 0 0 1-.017.003h-.007a.02.02 0 0 1-.014.004h-.01a.02.02 0 0 0-.014.003h-.01a.043.043 0 0 0-.02.004.013.013 0 0 0-.011.003.123.123 0 0 0-.038.007.361.361 0 0 0-.065.02.147.147 0 0 0-.017.004.013.013 0 0 1-.01.003c.003-.003.007-.007.01-.007a.585.585 0 0 1 .103-.03c.003-.004.003-.007.007-.004a.622.622 0 0 1 .106-.017c.007 0 .013-.003.02 0a.277.277 0 0 1 .052-.003.006.006 0 0 1 .01 0 .415.415 0 0 1 .065-.004.791.791 0 0 1 .318.065h.004c.003.004.003.004.007.004a.049.049 0 0 1 .02.007l.004.003.037.017a.107.107 0 0 1 .035.017c.006.004.017.007.024.01a.072.072 0 0 0 .02.014.314.314 0 0 1 .027.017.666.666 0 0 1 .086.062c.047.039.09.08.13.127a.363.363 0 0 1 .034.04.13.13 0 0 1 .031.045.12.12 0 0 1 .017.028.12.12 0 0 1 .017.027v.007Zm.007.007v.003c-.004-.003-.004-.007-.007-.01.007 0 .007.003.007.007Z"
35
+ fill="#528693"
36
+ />
37
+ <path
38
+ d="m9.939 3.585-.004-.004a.1.1 0 0 1-.006-.03.94.94 0 0 0-.093-.326.004.004 0 0 0 0-.002.003.003 0 0 0-.003-.001c0-.004-.004-.004-.004-.007a.019.019 0 0 0-.01-.017c0-.003-.003-.003-.003-.007a.23.23 0 0 1 .037.062c.004.007.007.01.007.017a.046.046 0 0 1 .01.027l.004.004a.066.066 0 0 1 .01.034l.004.003a.025.025 0 0 1 .006.02.025.025 0 0 1 .007.022.441.441 0 0 1 .02.085v.007a.453.453 0 0 1 .018.113Zm.329-.075a.171.171 0 0 1-.007.061 1.305 1.305 0 0 0-.195-.613c.113.164.183.353.202.552Zm-1.819-.668c.004-.004.004 0 .004 0a.004.004 0 0 1-.004.004v-.004ZM8.46 2.834c0 .003-.004.003-.007.006a.01.01 0 0 1 .003-.006h.003Zm.027-.013-.003.004V2.82h.003Zm.069-.034a.012.012 0 0 0-.007.004.013.013 0 0 1-.01.003.075.075 0 0 0-.018.01h-.003a.072.072 0 0 1 .02-.014c.007-.003.01-.006.017-.003Zm.037-.022h.003c-.003.004-.007.004-.01.007-.003.004-.01.004-.014.007-.003.004-.003.004-.007.004H8.56a.08.08 0 0 1 .034-.017Zm.01-.002c0-.003.003 0 .003 0a.003.003 0 0 1-.003.003H8.6l.003-.003Zm1.206.418a1.02 1.02 0 0 0-.538-.435c-.003-.004-.003-.004-.007-.004a.217.217 0 0 0-.024-.006.02.02 0 0 0-.013-.004.091.091 0 0 0-.041-.01c-.004-.003-.004-.003-.007-.003-.004 0-.014-.004-.02-.004a.007.007 0 0 0-.006-.002.007.007 0 0 0-.005.002h-.003a.012.012 0 0 0-.007-.003h-.004c-.003-.004-.003-.004-.007 0h-.003c0-.004-.003-.004-.007-.004H9.11a.068.068 0 0 0-.027-.003.153.153 0 0 0-.038-.004h-.024a.037.037 0 0 1-.02-.003h-.004c-.007.003-.01 0-.013 0H8.96a.075.075 0 0 0-.028.003h-.03a.02.02 0 0 0-.015.004h-.03a.03.03 0 0 1-.017.003h-.007a.02.02 0 0 1-.014.004h-.01a.02.02 0 0 0-.014.003h-.01a.043.043 0 0 0-.02.004.013.013 0 0 0-.011.003.123.123 0 0 0-.038.007.361.361 0 0 0-.065.02.147.147 0 0 0-.017.004.013.013 0 0 1-.01.003c.003-.003.007-.007.01-.007a.585.585 0 0 1 .103-.03c.003-.004.003-.007.007-.004a.622.622 0 0 1 .106-.017c.007 0 .013-.003.02 0a.277.277 0 0 1 .052-.003.006.006 0 0 1 .01 0 .415.415 0 0 1 .065-.004.791.791 0 0 1 .318.065h.004c.003.004.003.004.007.004a.049.049 0 0 1 .02.007l.004.003.037.017a.107.107 0 0 1 .035.017c.006.004.017.007.024.01a.072.072 0 0 0 .02.014.314.314 0 0 1 .027.017.666.666 0 0 1 .086.062c.047.039.09.08.13.127a.363.363 0 0 1 .034.04.13.13 0 0 1 .031.045.12.12 0 0 1 .017.028.12.12 0 0 1 .017.027v.007Zm.007.007v.003c-.004-.003-.004-.007-.007-.01.007 0 .007.003.007.007Z"
39
+ fill="#528693"
40
+ />
41
+ <path
42
+ d="m9.939 3.585-.004-.004a.1.1 0 0 1-.006-.03.94.94 0 0 0-.093-.326.004.004 0 0 0 0-.002.003.003 0 0 0-.003-.001c0-.004-.004-.004-.004-.007a.019.019 0 0 0-.01-.017c0-.003-.003-.003-.003-.007a.23.23 0 0 1 .037.062c.004.007.007.01.007.017a.046.046 0 0 1 .01.027l.004.004a.066.066 0 0 1 .01.034l.004.003a.025.025 0 0 1 .006.02.025.025 0 0 1 .007.022.441.441 0 0 1 .02.085v.007a.453.453 0 0 1 .018.113Zm.329-.075a.171.171 0 0 1-.007.061 1.305 1.305 0 0 0-.195-.613c.113.164.183.353.202.552ZM9.11 2.363a1.073 1.073 0 0 0-.181-.007 1.31 1.31 0 0 0-1.26 1.12.142.142 0 0 0-.007.054v.017c-.004 0-.004-.003-.004-.007v-.03a.691.691 0 0 1 .02-.117v-.007a.01.01 0 0 0 .004-.007 1.1 1.1 0 0 1 .01-.048.003.003 0 0 1 .004-.003.103.103 0 0 1 .007-.034.049.049 0 0 1 .007-.02.1.1 0 0 1 .007-.032l.03-.082c.004 0 .004 0 .004-.003a.013.013 0 0 1 .003-.01l.052-.11c.003 0 .003 0 .003-.003V3.03a.142.142 0 0 0 .024-.038l.024-.04a.003.003 0 0 1 .003-.004.072.072 0 0 1 .014-.02 1.284 1.284 0 0 1 .25-.278c.26-.217.594-.323.932-.298a.377.377 0 0 1 .054.01Z"
43
+ fill="#528693"
44
+ />
45
+ <path
46
+ d="M9.306 2.397a1.204 1.204 0 0 0-.197-.034c.066.006.132.018.197.034Zm-1.202.814c0 .003-.004.007-.004.01h-.003c0-.002.003-.006.007-.01Zm.034-.061v.006h-.004a.01.01 0 0 0 .003-.006Zm.4-.36v.004a.075.075 0 0 0-.017.01h-.003a.071.071 0 0 1 .02-.013Zm1.315.463a.075.075 0 0 0-.017-.028.004.004 0 0 0 0-.002.003.003 0 0 0-.003-.001c0-.004-.004-.004-.004-.007a.019.019 0 0 0-.01-.017c0-.003-.003-.003-.003-.007a.23.23 0 0 1 .037.062Zm.086.332-.004-.004a.564.564 0 0 0-.013-.11.453.453 0 0 1 .017.114Z"
47
+ fill="#528693"
48
+ />
49
+ <path
50
+ d="M9.11 2.362a1.073 1.073 0 0 0-.181-.006 1.31 1.31 0 0 0-1.26 1.12.142.142 0 0 0-.007.054v.017c-.004 0-.004-.003-.004-.007v-.03a.691.691 0 0 1 .02-.117v-.007a.01.01 0 0 0 .004-.007 1.1 1.1 0 0 1 .01-.048.003.003 0 0 1 .004-.003.103.103 0 0 1 .007-.034.049.049 0 0 1 .007-.02.1.1 0 0 1 .007-.032l.03-.082c.004 0 .004 0 .004-.003a.013.013 0 0 1 .003-.01l.052-.11c.003 0 .003 0 .003-.003V3.03a.142.142 0 0 0 .024-.038l.024-.04a.003.003 0 0 1 .003-.004.072.072 0 0 1 .014-.02 1.284 1.284 0 0 1 .25-.278c.26-.217.594-.323.932-.298a.377.377 0 0 1 .054.01Z"
51
+ fill="#528693"
52
+ />
53
+ <path
54
+ d="M9.306 2.397a1.204 1.204 0 0 0-.197-.034c.066.006.132.018.197.034Zm-1.202.814c0 .003-.004.007-.004.01h-.003c0-.002.003-.006.007-.01Zm.034-.061v.006h-.004a.01.01 0 0 0 .003-.006Zm.4-.36v.004a.075.075 0 0 0-.017.01h-.003a.071.071 0 0 1 .02-.013Zm1.315.463a.075.075 0 0 0-.017-.028.004.004 0 0 0 0-.002.003.003 0 0 0-.003-.001c0-.004-.004-.004-.004-.007a.019.019 0 0 0-.01-.017c0-.003-.003-.003-.003-.007a.23.23 0 0 1 .037.062Zm.086.332-.004-.004a.564.564 0 0 0-.013-.11.453.453 0 0 1 .017.114Z"
55
+ fill="#528693"
56
+ />
57
+ <path
58
+ d="M10.301 3.553a1.351 1.351 0 0 0-2.359-.747 1.324 1.324 0 0 0-.305.7v.02a1.301 1.301 0 0 0 .233.905.15.15 0 0 0 .02.024c.007.01.014.017.02.027a.019.019 0 0 1 .011.014l.058.061.02.024c.198.206.455.345.735.4a1.332 1.332 0 0 0 1.3-.514 1.356 1.356 0 0 0 .267-.914Zm-.393.21a.964.964 0 0 1-.263.57l-.017.016a.91.91 0 0 1-.476.25.885.885 0 0 1-.496-.032 1.055 1.055 0 0 1-.632-.757.94.94 0 0 1 .203-.699.972.972 0 0 1 .77-.4c.08.001.16.013.237.035a.112.112 0 0 0-.017-.007c.084.03.165.066.243.109a.968.968 0 0 1 .205.177c.12.136.2.303.234.481a.917.917 0 0 1 .009.257Z"
59
+ fill="#528693"
60
+ />
61
+ <path
62
+ d="m9.673 4.299-.01.011.002-.002c.003-.001.005-.007.008-.01Zm2.225-.132a7.495 7.495 0 0 1-.47 1.243c-.37.794-.784 1.551-1.215 2.294a52.54 52.54 0 0 1-.664 1.106.728.728 0 0 1-.274.291.637.637 0 0 1-.798-.15 1.495 1.495 0 0 1-.103-.15l-.086-.138a42.1 42.1 0 0 1-.993-1.67 41.699 41.699 0 0 0 1.038 1.78l.092.144a.656.656 0 0 0 1.007.099c.08-.095.151-.197.212-.305.46-.74.901-1.49 1.308-2.267.203-.387.398-.777.572-1.185a6.893 6.893 0 0 0 .432-1.267.673.673 0 0 0 .017-.157 3.369 3.369 0 0 1-.075.332Z"
63
+ fill="#528693"
64
+ />
65
+ <path
66
+ d="M11.905 2.79a3.032 3.032 0 0 0-5.942.309c-.117.753.212 1.54.504 2.218.185.428.39.846.606 1.257.072.137.144.274.222.418.319.572.654 1.123.993 1.67l.086.138a1.497 1.497 0 0 0 .103.15.637.637 0 0 0 .798.151.728.728 0 0 0 .274-.29c.226-.367.448-.737.664-1.107.431-.743.846-1.5 1.216-2.294a7.504 7.504 0 0 0 .469-1.243 3.234 3.234 0 0 0 .075-.336 3.104 3.104 0 0 0 .024-.353 2.926 2.926 0 0 0-.092-.688Zm-.326 1.127c-.007.024-.01.048-.017.072a5.374 5.374 0 0 1-.058.22 7.246 7.246 0 0 1-.267.732 8.758 8.758 0 0 1-.274.61 20.5 20.5 0 0 1-.332.674c-.387.74-.808 1.459-1.25 2.178l-.165.267a.288.288 0 0 1-.147.134.278.278 0 0 1-.335-.11 38.421 38.421 0 0 1-.672-1.113 5.601 5.601 0 0 1-.11-.195c-.088-.147-.17-.295-.256-.445l-.23-.418-.058-.11a16.814 16.814 0 0 1-.315-.61A17.88 17.88 0 0 1 6.8 5.17a7.382 7.382 0 0 1-.411-1.15c-.017-.093-.041-.188-.055-.281a2.322 2.322 0 0 1-.01-.27 2.459 2.459 0 0 1 .075-.552A2.642 2.642 0 0 1 9.172.904c.065.003.13.01.195.02a.548.548 0 0 1 .13.024c.045.007.086.017.13.028a.568.568 0 0 1 .13.037c.09.028.175.059.26.093.049.02.097.04.145.065a2.302 2.302 0 0 1 .414.26 2.173 2.173 0 0 1 .318.284c.035.036.069.074.1.113a.611.611 0 0 1 .096.12c.183.244.325.517.417.808a2.47 2.47 0 0 1 .072 1.161Z"
67
+ fill="#528693"
68
+ />
69
+ <path
70
+ d="M9.836 3.225a.075.075 0 0 1 .017.028c.004.007.007.01.004.014l.003.003a.045.045 0 0 1 .01.027.121.121 0 0 1-.013-.03l-.02-.042-.004-.003c0-.004-.004-.004-.004-.007.007.004.007.007.007.01Zm.1.356a.1.1 0 0 1-.007-.03 1.061 1.061 0 0 0-.045-.213l-.01-.03A.012.012 0 0 1 9.87 3.3h.004c0 .003.003.003 0 .007a.055.055 0 0 1 .01.027v.003h.004a.025.025 0 0 1 .006.02.025.025 0 0 1 .007.022.441.441 0 0 1 .02.085v.007a.453.453 0 0 1 .018.113l-.004-.003Z"
71
+ fill="#528693"
72
+ />
73
+ </svg>
74
+ );
75
+ });
76
+
77
+ StockLocation.displayName = 'StockLocationIcon';
@@ -0,0 +1,52 @@
1
+ import { forwardRef, SVGProps } from 'react';
2
+
3
+ type SubscriptionContractsProps = SVGProps<SVGSVGElement>;
4
+
5
+ type SubscriptionContractsRef = SVGSVGElement;
6
+
7
+ export const SubscriptionContracts = forwardRef<SubscriptionContractsRef, SubscriptionContractsProps>(
8
+ (delegated, ref) => {
9
+ return (
10
+ <svg ref={ref} width="23" height="22" viewBox="0 0 23 22" fill="none" {...delegated}>
11
+ <path
12
+ fill="#BFF6F8"
13
+ d="M6.684 19.1h10.8a.6.6 0 0 0 .6-.6V6.748a.6.6 0 0 0-.176-.424L14.86 3.276a.6.6 0 0 0-.425-.176h-7.75a.6.6 0 0 0-.6.6v14.8a.6.6 0 0 0 .6.6Z"
14
+ />
15
+ <path
16
+ fill="#528693"
17
+ fillRule="evenodd"
18
+ d="m17.908 6.324.425-.424a1.2 1.2 0 0 1 .351.848V18.5a1.2 1.2 0 0 1-1.2 1.2h-10.8a1.2 1.2 0 0 1-1.2-1.2V3.7a1.2 1.2 0 0 1 1.2-1.2h7.751a1.2 1.2 0 0 1 .85.351L18.332 5.9l-.425.424ZM17.484 19.1h-10.8a.6.6 0 0 1-.6-.6V3.7a.6.6 0 0 1 .6-.6h7.751a.6.6 0 0 1 .425.176l3.048 3.048a.6.6 0 0 1 .176.424V18.5a.6.6 0 0 1-.6.6Z"
19
+ clip-rule="evenodd"
20
+ />
21
+ <path
22
+ fill="#528693"
23
+ fillRule="evenodd"
24
+ d="M14.784 2.9v2.6a.7.7 0 0 0 .7.7h3v.6h-3a1.3 1.3 0 0 1-1.3-1.3V2.9h.6Z"
25
+ clip-rule="evenodd"
26
+ />
27
+ <path
28
+ fill="#fff"
29
+ d="M13.977 8.068c-.12.426-.279.815-.393 1.233l4.498 1.256c1.502.316 1.335-1.12.702-1.857V7.66c1.645 1.392 2.137 2.286 1.828 3.213-.79 2.372-5.264.59-7.586.074l-.387 1.163-2.135-2.94 3.473-1.102Z"
30
+ />
31
+ <path
32
+ fill="#528693"
33
+ fillRule="evenodd"
34
+ d="M18.784 8.7c.633.738.8 2.173-.702 1.857l-4.498-1.256.02-.068c.044-.157.095-.31.146-.463l.014-.042.022-.065c.066-.195.133-.39.191-.595l-.698.222h-.002l-2.17.689-.603.19a1328.391 1328.391 0 0 1 1.109 1.528l.592.816.434.597.387-1.163c.412.092.893.223 1.408.364 2.386.653 5.528 1.513 6.178-.438.267-.803-.066-1.58-1.228-2.678-.18-.17-.38-.348-.6-.534V8.7Zm-5.363 2.96-.213.64a.6.6 0 0 1-1.055.163 3823.073 3823.073 0 0 1-2.135-2.94.6.6 0 0 1 .304-.925l2.772-.88.702-.222a.6.6 0 0 1 .758.736c-.062.22-.133.429-.198.62l-.01.029-.003.009 3.88 1.084c.287.057.391.01.403.004a.153.153 0 0 0 .015-.05.84.84 0 0 0-.055-.385 1.44 1.44 0 0 0-.257-.453l-.145-.168V6.367l.988.836c.836.707 1.437 1.334 1.78 1.943.364.643.443 1.273.229 1.917-.272.817-.88 1.271-1.6 1.473-.687.192-1.49.162-2.272.05-.791-.111-1.622-.316-2.384-.52-.23-.061-.453-.122-.666-.18-.297-.082-.577-.159-.838-.226Z"
35
+ clip-rule="evenodd"
36
+ />
37
+ <path
38
+ fill="#fff"
39
+ d="M10.492 13.433c-.126.424-.2.837-.327 1.252l-4.473-1.343c-1.053-.393-.848-1.1-.298-1.563v-1.03c-1.248.31-1.827.77-2.009 1.507-.6 2.427 4.133 3.312 6.37 4.118l-.293 1.19 3.376-1.343-2.346-2.788Z"
40
+ />
41
+ <path
42
+ fill="#528693"
43
+ fillRule="evenodd"
44
+ d="M5.394 11.779c-.55.463-.755 1.17.298 1.563l4.473 1.343.02-.068c.046-.157.085-.313.123-.47l.01-.043.017-.067c.048-.2.096-.4.156-.604l.472.56.003.003c.49.582.975 1.16 1.465 1.74l.407.485-.587.233-1.167.464-.937.373-.685.273.294-1.19c-.397-.143-.873-.288-1.384-.445-2.366-.724-5.48-1.677-4.987-3.673.15-.606.57-1.026 1.409-1.328.18-.064.38-.124.6-.178v1.029Zm3.647 4.987-.162.654a.6.6 0 0 0 .804.701 3603.743 3603.743 0 0 0 3.377-1.343.6.6 0 0 0 .237-.944l-1.872-2.224-.474-.564a.6.6 0 0 0-1.035.216c-.065.22-.116.434-.164.63l-.007.03-.002.01-3.859-1.159c-.195-.075-.285-.146-.322-.185a.133.133 0 0 1-.02-.028v-.003a.335.335 0 0 1 .037-.092.913.913 0 0 1 .201-.227l.214-.18V9.984l-.744.184c-.662.163-1.208.38-1.623.697-.434.33-.7.747-.824 1.247-.207.836.063 1.545.564 2.1.478.53 1.174.934 1.893 1.258.729.328 1.54.6 2.293.835l.66.203c.294.09.572.175.828.258Z"
45
+ clip-rule="evenodd"
46
+ />
47
+ </svg>
48
+ );
49
+ },
50
+ );
51
+
52
+ SubscriptionContracts.displayName = 'SubscriptionContractsIcon';
@@ -0,0 +1,57 @@
1
+ import { forwardRef, SVGProps } from 'react';
2
+
3
+ type SubscriptionPlansProps = SVGProps<SVGSVGElement>;
4
+
5
+ type SubscriptionPlansRef = SVGSVGElement;
6
+
7
+ export const SubscriptionPlans = forwardRef<SubscriptionPlansRef, SubscriptionPlansProps>((delegated, ref) => {
8
+ return (
9
+ <svg ref={ref} width="23" height="22" viewBox="0 0 23 22" fill="none" {...delegated}>
10
+ <path
11
+ fill="#BFF6F8"
12
+ d="M5.181 6.227a1 1 0 0 1 1-1h11.307a1 1 0 0 1 1 1v11.225a1 1 0 0 1-1 1H6.18a1 1 0 0 1-1-1V6.227Z"
13
+ />
14
+ <path
15
+ fill="#528693"
16
+ fillRule="evenodd"
17
+ d="M6.397 4.627h11.09a1.6 1.6 0 0 1 1.6 1.6v11a1.6 1.6 0 0 1-1.6 1.6H6.398a1.6 1.6 0 0 1-1.6-1.6v-11a1.6 1.6 0 0 1 1.6-1.6Zm0 .6h11.09a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1H6.398a1 1 0 0 1-1-1v-11a1 1 0 0 1 1-1Z"
18
+ clip-rule="evenodd"
19
+ />
20
+ <path fill="#fff" d="M5.397 6.227a1 1 0 0 1 1-1h11.09a1 1 0 0 1 1 1v1.455H5.398V6.227Z" />
21
+ <path
22
+ fill="#528693"
23
+ fillRule="evenodd"
24
+ d="M19.088 8.282H4.797V6.227a1.6 1.6 0 0 1 1.6-1.6h11.09a1.6 1.6 0 0 1 1.6 1.6v2.055ZM6.397 5.227a1 1 0 0 0-1 1v1.455h13.09V6.227a1 1 0 0 0-1-1H6.398Z"
25
+ clip-rule="evenodd"
26
+ />
27
+ <path
28
+ fill="#528693"
29
+ fillRule="evenodd"
30
+ d="M8.352 4v1.227h-1V4a.5.5 0 0 1 1 0ZM16.533 4v1.227h-1V4a.5.5 0 1 1 1 0ZM12.443 4v1.227h-1V4a.5.5 0 1 1 1 0Z"
31
+ clip-rule="evenodd"
32
+ />
33
+ <path
34
+ fill="#fff"
35
+ d="M14.27 10.15c-.121.426-.28.815-.394 1.233l4.498 1.256c1.502.316 1.335-1.12.702-1.857v-1.04c1.645 1.392 2.137 2.286 1.828 3.213-.79 2.372-5.264.59-7.585.074l-.388 1.163-2.135-2.94 3.473-1.102Z"
36
+ />
37
+ <path
38
+ fill="#528693"
39
+ fillRule="evenodd"
40
+ d="M19.076 10.782c.633.738.8 2.173-.702 1.857l-4.498-1.256.02-.068c.044-.157.095-.31.146-.463l.014-.042.023-.065c.066-.194.132-.39.19-.595l-.697.221-.003.001-2.17.689-.603.19a1504.34 1504.34 0 0 1 1.109 1.528l.593.816.433.597.388-1.163c.412.092.892.223 1.407.364 2.387.653 5.528 1.513 6.178-.438.267-.803-.066-1.58-1.228-2.678-.18-.17-.38-.348-.6-.534v1.039Zm-5.363 2.96-.213.64a.6.6 0 0 1-1.054.163l-1.027-1.414-1.109-1.527a.6.6 0 0 1 .305-.924l2.771-.88.702-.222a.6.6 0 0 1 .759.736c-.063.22-.134.429-.199.62l-.01.029-.003.009 3.88 1.084c.287.058.392.01.403.004a.156.156 0 0 0 .015-.05.84.84 0 0 0-.055-.385 1.44 1.44 0 0 0-.257-.453l-.145-.168V8.449l.988.836c.836.707 1.437 1.334 1.781 1.943.363.643.442 1.273.228 1.917-.272.816-.879 1.271-1.6 1.473-.686.192-1.49.162-2.272.05-.791-.111-1.622-.316-2.384-.52-.23-.061-.452-.122-.666-.18a59.482 59.482 0 0 0-.838-.226Z"
41
+ clip-rule="evenodd"
42
+ />
43
+ <path
44
+ fill="#fff"
45
+ d="M9.903 13.26c-.125.425-.2.838-.327 1.252l-4.472-1.343c-1.054-.392-.848-1.1-.298-1.563v-1.029c-1.248.309-1.827.77-2.01 1.507-.6 2.427 4.134 3.312 6.372 4.118l-.295 1.19 3.377-1.344-2.347-2.788Z"
46
+ />
47
+ <path
48
+ fill="#528693"
49
+ fillRule="evenodd"
50
+ d="M4.806 11.607c-.55.462-.756 1.17.298 1.562l4.472 1.343.02-.068a10.141 10.141 0 0 0 .15-.58c.049-.199.097-.4.157-.604l.472.56.002.003 1.465 1.741.408.484-.588.234-1.166.464-.937.373-.686.272.295-1.19c-.398-.143-.874-.288-1.384-.444-2.367-.724-5.48-1.677-4.987-3.673.15-.607.569-1.027 1.409-1.328.18-.065.38-.124.6-.179v1.03Zm3.647 4.986-.162.654a.6.6 0 0 0 .804.702l1.624-.646 1.753-.698a.6.6 0 0 0 .237-.944l-1.873-2.224-.474-.563a.6.6 0 0 0-1.034.216c-.065.219-.117.434-.164.63l-.007.03-.002.009-3.859-1.158c-.195-.075-.286-.147-.322-.186a.136.136 0 0 1-.021-.027v-.004l.004-.018a.333.333 0 0 1 .033-.073.913.913 0 0 1 .202-.227l.214-.18V9.81l-.744.184c-.662.164-1.208.381-1.624.697-.433.33-.7.748-.824 1.248-.206.835.063 1.544.565 2.1.478.529 1.173.934 1.893 1.258.728.328 1.54.599 2.293.834.227.071.448.139.66.203.294.09.571.175.828.258Z"
51
+ clip-rule="evenodd"
52
+ />
53
+ </svg>
54
+ );
55
+ });
56
+
57
+ SubscriptionPlans.displayName = 'SubscriptionPlansIcon';
@@ -0,0 +1,62 @@
1
+ import { forwardRef, SVGProps } from 'react';
2
+
3
+ type TargetProps = SVGProps<SVGSVGElement>;
4
+
5
+ type TargetRef = SVGSVGElement;
6
+
7
+ export const Target = forwardRef<TargetRef, TargetProps>((delegated, ref) => {
8
+ return (
9
+ <svg ref={ref} width="23" height="22" fill="none" viewBox="0 0 23 22" {...delegated}>
10
+ <path fill="#BFF6F8" d="M20.524 12.018a8.522 8.522 0 1 1-17.044 0 8.522 8.522 0 0 1 17.044 0Z" />
11
+ <path
12
+ fill="#528693"
13
+ fillRule="evenodd"
14
+ d="M12.002 19.964a7.946 7.946 0 1 0 0-15.892 7.946 7.946 0 0 0 0 15.892Zm0 .576a8.522 8.522 0 1 0 0-17.044 8.522 8.522 0 0 0 0 17.044Z"
15
+ clipRule="evenodd"
16
+ />
17
+ <path fill="#fff" d="M18.3 12.018a6.299 6.299 0 1 1-12.597 0 6.299 6.299 0 0 1 12.598 0Z" />
18
+ <path
19
+ fill="#528693"
20
+ fillRule="evenodd"
21
+ d="M12.002 17.856a5.838 5.838 0 1 0 0-11.676 5.838 5.838 0 0 0 0 11.676Zm0 .461a6.299 6.299 0 1 0 0-12.598 6.299 6.299 0 0 0 0 12.598Z"
22
+ clipRule="evenodd"
23
+ />
24
+ <path fill="#BFF6F8" d="M16.078 12.018a4.076 4.076 0 1 1-8.152 0 4.076 4.076 0 0 1 8.152 0Z" />
25
+ <path
26
+ fill="#528693"
27
+ fillRule="evenodd"
28
+ d="M12.002 15.633a3.615 3.615 0 1 0 0-7.23 3.615 3.615 0 0 0 0 7.23Zm0 .461a4.076 4.076 0 1 0 0-8.151 4.076 4.076 0 0 0 0 8.151Z"
29
+ clipRule="evenodd"
30
+ />
31
+ <path fill="#fff" d="M13.854 12.018a1.853 1.853 0 1 1-3.705 0 1.853 1.853 0 0 1 3.705 0Z" />
32
+ <path
33
+ fill="#528693"
34
+ fillRule="evenodd"
35
+ d="M12.002 13.41a1.392 1.392 0 1 0 0-2.783 1.392 1.392 0 0 0 0 2.783Zm0 .46a1.853 1.853 0 1 0 0-3.704 1.853 1.853 0 0 0 0 3.705Z"
36
+ clipRule="evenodd"
37
+ />
38
+ <path fill="#fff" d="m15.899.398.906 4.093L14.2 8.688l-1.09-3.916L15.9.398Z" />
39
+ <path fill="#fff" d="m20.897 3.585-4.092.906L14.2 8.687l3.909-.728 2.788-4.374Z" />
40
+ <path
41
+ fill="#528693"
42
+ fillRule="evenodd"
43
+ d="M15.949.114c.115.02.206.108.231.221l.906 4.093-.562.125-.756-3.414-2.346 3.68 1.055 3.791a.288.288 0 0 1-.555.155l-1.09-3.916a.288.288 0 0 1 .035-.232L15.656.243a.288.288 0 0 1 .293-.129Z"
44
+ clipRule="evenodd"
45
+ />
46
+ <path
47
+ fill="#528693"
48
+ fillRule="evenodd"
49
+ d="M21.133 3.42a.288.288 0 0 0-.298-.117l-4.093.906.125.563 3.414-.756-2.348 3.682-3.786.706a.288.288 0 1 0 .105.567l3.91-.73a.288.288 0 0 0 .19-.128L21.14 3.74a.288.288 0 0 0-.007-.32Z"
50
+ clipRule="evenodd"
51
+ />
52
+ <path
53
+ fill="#528693"
54
+ fillRule="evenodd"
55
+ d="M16.96 4.248c.134.086.184.248.11.362l-4.874 7.566c-.073.113-.241.136-.375.05-.134-.086-.183-.248-.11-.361l4.875-7.567c.073-.113.24-.136.375-.05Z"
56
+ clipRule="evenodd"
57
+ />
58
+ </svg>
59
+ );
60
+ });
61
+
62
+ Target.displayName = 'TargetIcon';
@@ -0,0 +1,41 @@
1
+ import { forwardRef, SVGProps } from 'react';
2
+
3
+ type UsageMeterProps = SVGProps<SVGSVGElement>;
4
+
5
+ type UsageMeterRef = SVGSVGElement;
6
+
7
+ export const UsageMeter = forwardRef<UsageMeterRef, UsageMeterProps>((delegated, ref) => {
8
+ return (
9
+ <svg ref={ref} width="17" height="16" viewBox="0 0 17 16" fill="none" {...delegated}>
10
+ <g clipPath="url(#a)">
11
+ <path
12
+ d="M15.836 9.0665a1.7036 1.7036 0 0 0 .0053-.3334 6.6839 6.6839 0 0 0-1.1166-3.0268c-.0423-.0635-.0846-.1217-.1217-.18-.0582-.074-.1111-.1534-.1693-.2275a5.5278 5.5278 0 0 0-.3175-.381c-.0053-.0053-.0106-.0158-.0212-.0211a7.2427 7.2427 0 0 0-.6403-.635c-.0741-.0635-.1534-.1165-.2275-.1747a.0053.0053 0 0 0-.0016-.0037.0052.0052 0 0 0-.0037-.0015c-.1535-.1165-.3069-.2329-.471-.3387a.2946.2946 0 0 0-.0423-.0265c-.1376-.09-.2857-.1746-.4286-.2593-.0582-.0317-.1217-.0582-.1799-.09-.1059-.0528-.2117-.1058-.3175-.1534-.1059-.0476-.217-.09-.3228-.1323-.0741-.0264-.1429-.0582-.217-.0846a4.7983 4.7983 0 0 0-.3651-.1112 4.3458 4.3458 0 0 0-.2487-.0688 3.9942 3.9942 0 0 0-.2434-.0529 6.621 6.621 0 0 0-1.5134-.1534 6.9257 6.9257 0 0 0-6.768 6.1224c0 .0476.0053.0846.0053.1323a6.6487 6.6487 0 0 0 .09 2.0478 6.838 6.838 0 0 0 .3439 1.1695c.0794.1958.164.3863.2593.5768a7.523 7.523 0 0 0 .1534.2857l.037.0688.0795.1217.1534.2593c1.7568 0 3.5613-.0053 5.5615-.0106.0741 0 .1482.0053.2223.0053 1.434.0106 2.5664.0212 4.1327-.0106.5133 0 1.0372-.0053 1.5822-.0053.0688-.1111.1482-.2381.2329-.381.0423-.0846.0952-.1799.1481-.2804a6.1283 6.1283 0 0 0 .3122-.7091 6.9592 6.9592 0 0 0 .4181-1.8785c0-.0371-.0053-.0635-.0053-.1006a7.2363 7.2363 0 0 0 .0053-.9577Zm-.7885 1.6986a5.9413 5.9413 0 0 1-.3175 1.0477 5.3569 5.3569 0 0 1-.2275.508c-.0477.0847-.09.1693-.1376.254l-.0476.0741-5.3763.0159H7.1154c-1.1536-.0106-2.309-.0141-3.466-.0106a.0399.0399 0 0 0-.0212.0106c-.0053-.0053-.0053-.0106-.0159-.0265-.0423-.0741-.0952-.1534-.1376-.2434a5.1632 5.1632 0 0 1-.2963-.635 6.1699 6.1699 0 0 1-.4075-1.688v-.0265a6.5296 6.5296 0 0 1-.0053-.9102c.03-.1036.0494-.21.0583-.3174a6.203 6.203 0 0 1 2.323-4.1434c.0317-.0265.0635-.0476.0952-.074.0847-.0636.1747-.127.2646-.1906a6.2837 6.2837 0 0 1 3.5771-1.0583 6.1823 6.1823 0 0 1 3.8365 1.4234c.0688.0583.1376.1165.2063.18a6.244 6.244 0 0 1 1.7675 2.7569c.0052.0159.0052.0265.0105.0423.0477.1482.0847.3017.1165.4498.0154.0593.0277.1194.037.18.0212.127.0423.254.0582.3862a6.1523 6.1523 0 0 1-.0688 1.995Z"
13
+ fill="#528693"
14
+ />
15
+ <path
16
+ d="m3.6286 12.8043.053-.0505a227.043 227.043 0 0 1 3.4347.0107h1.827l5.3763-.0159.0544-.0001.0294-.0458.0477-.0741.0001.0001.0029-.0051a6.0478 6.0478 0 0 0 .0697-.1286l.0003-.0005a5.6307 5.6307 0 0 1 .0676-.1249h.0001l.0017-.0035a5.4268 5.4268 0 0 0 .2315-.5166c.14-.3442.248-.7006.3225-1.0646l.0001-.0005a6.25 6.25 0 0 0 .07-2.0269c-.0161-.1343-.0376-.263-.0586-.3893l-.0001-.0005a1.8922 1.8922 0 0 0-.0385-.187c-.0319-.1491-.0697-.3054-.1185-.4574l-.0003-.001a.0624.0624 0 0 1-.0021-.0092c-.0013-.0065-.0036-.0182-.0082-.0322a6.3444 6.3444 0 0 0-1.7951-2.8001c-.0703-.0648-.1404-.1241-.2086-.1819l-.0007-.0005-.0007-.0007a6.2822 6.2822 0 0 0-3.8985-1.4464h-.0004a6.3839 6.3839 0 0 0-3.634 1.0751h-.0001l-.0021.0015-.0006.0004a11.5065 11.5065 0 0 0-.2663.1918V4.52l-.004.0033a1.08 1.08 0 0 1-.0436.0338l-.0008.0006a1.262 1.262 0 0 0-.0498.0387 6.3029 6.3029 0 0 0-2.3594 4.2093l-.0004.0036a1.5248 1.5248 0 0 1-.0546.298l-.003.0104-.0007.011a6.632 6.632 0 0 0 .005.9202v.0227h-.0004l.001.0096a6.269 6.269 0 0 0 .4138 1.7149c.0855.2212.1859.4364.3004.6441.0315.0664.07.1305.1031.1855.0134.0223.026.0431.0367.062l-.0002.0001.0039.0057a.0477.0477 0 0 1 .0035.0061l.0001.0004a.004.004 0 0 1 .0003.0006c.0019.0038.0096.0198.0244.0346l.0691.0691Zm11.3945-4.6006c-.0317-.1482-.0688-.3016-.1164-.4498a.1685.1685 0 0 1-.0053-.0212c-.0013-.0066-.0026-.0132-.0053-.0212a6.2446 6.2446 0 0 0-1.7674-2.7569l1.8944 3.249Zm-3.5976-.2364c-.2292.2923-.4509.5746-.6671.8498-.3278.4174-.6429.8187-.9522 1.2141l-.0004-.0003-.0053.0083a1.1904 1.1904 0 0 1-.5644.4679.9274.9274 0 0 1-.2989.0519.8843.8843 0 0 1-.1615-.0143l.0001-.0008-.0127-.0006a.091.091 0 0 1-.0247-.005l-.007-.0025-.0073-.0014a.9062.9062 0 0 1-.162-.0477c-.018-.0072-.0355-.0123-.048-.0161a.438.438 0 0 1-.0285-.0092.9676.9676 0 0 1-.5434-.8134.9805.9805 0 0 1 .389-.8353l.0001-.0001c.1959-.1482.3915-.2962.603-.4548l.0021-.0017c.2218-.176.4384-.345.6496-.507l.002-.0016a81.951 81.951 0 0 1 1.0093-.8032l.0002-.0001.2378-.185.1894-.1474c.0308-.0226.0614-.0472.0899-.07a3.3156 3.3156 0 0 1 .0284-.0227 1.0318 1.0318 0 0 1 .1041-.075.542.542 0 0 1 .253-.066h.001a.5094.5094 0 0 1 .3945.168h-.0001l.0019.002a.519.519 0 0 1 .036.6738c-.119.1497-.2408.305-.3652.4636l-.1427.1818Z"
17
+ fill="#BFF6F8"
18
+ stroke="#BFF6F8"
19
+ strokeWidth=".2"
20
+ />
21
+ <path
22
+ d="M15.3469 12.7007c0-.0529 0-.0572-.0025-.0471v.7234c0 .0095 0-.0053.0025.0111s0 .0291 0-.0418v-.662c.0015-.0482.0005.0741 0 .0164ZM2.6208 12.7007v-.0471.7345c0 .0164 0 .0291.0025-.0418v-.662c-.001-.0482-.0015.0741-.0025.0164ZM11.968 6.5791a.6088.6088 0 0 0-.4709-.201.6414.6414 0 0 0-.3016.0793c-.0794.0476-.1535.1164-.2329.1746l-.1905.1482-.2381.1852a82.141 82.141 0 0 0-1.0107.8043c-.2117.164-.4286.3334-.6509.508-.2116.1588-.4074.307-.6032.455a1.0805 1.0805 0 0 0-.4286.9208 1.0673 1.0673 0 0 0 .6032.8996c.0265.0106.053.0159.0794.0265.0582.0232.1184.0409.1799.0529a.1912.1912 0 0 0 .053.0106.9957.9957 0 0 0 .1798.0158 1.0262 1.0262 0 0 0 .3334-.0582 1.29 1.29 0 0 0 .6138-.508c.5133-.6561 1.0425-1.3282 1.6193-2.0637.1746-.2222.3439-.4392.508-.6456a.619.619 0 0 0-.0424-.8043Zm-.6667.7144-.291.3492c-.5451.6615-1.0795 1.3282-1.614 1.995-.0582.074-.1482.1905-.18.2328a.4232.4232 0 0 1-.1428.0952.4035.4035 0 0 1-.471-.1221.4032.4032 0 0 1-.0105-.4864c.0159-.0106.0106-.0423.0053-.0794.0106-.0105.0211-.0264.0317-.037a.7572.7572 0 0 1 .0794-.0582.1058.1058 0 0 0 .0688-.0212c.3916-.291.7673-.582 1.1377-.8784.2064-.1534.418-.307.6244-.4604l.6297-.492.1482-.1112a.064.064 0 0 1-.0159.074Z"
23
+ fill="#528693"
24
+ />
25
+ <path
26
+ d="m11.3564 7.065.0516.113a.1638.1638 0 0 1-.0339.1842l-.2869.3442-.0001.0002c-.5444.6606-1.0783 1.3267-1.6127 1.9933-.058.0739-.1472.1893-.1782.2307l-.0082.0108-.0006-.0006a.5222.5222 0 0 1-.1766.1177l-.0375-.0927m2.2831-2.9009L8.524 9.9057m2.8324-2.8408-.0994.0746-.1482.111-.0016.0013-.6287.4914a61.544 61.544 0 0 1-.3108.229l-.0001.0002c-.1044.0766-.2092.1535-.3126.2304l-.0028.0022c-.3696.2957-.7443.586-1.1349.8762l-.0005.0004a.0058.0058 0 0 1-.0037.0012l-.0318-.0016-.0269.0171a.8582.8582 0 0 0-.0898.066l-.0003-.0004-.0062.0062a.3105.3105 0 0 0-.0223.0257l-.001.0011-.0063.0078-.0021.0025-.0354.0353.007.0495.0008.0049.0022.0158a.5032.5032 0 0 0 .023.593m2.8324-2.8408L8.524 9.9057m.5493.0601.0384.0924a.5037.5037 0 0 1-.5877-.1525m.5493.0601a.4234.4234 0 0 0 .1429-.0952l-.6138-.027a.4033.4033 0 0 0 .471.1222Z"
27
+ fill="#fff"
28
+ stroke="#fff"
29
+ strokeWidth=".2"
30
+ />
31
+ </g>
32
+ <defs>
33
+ <clipPath id="a">
34
+ <path fill="#fff" transform="translate(.984)" d="M0 0h16v16H0z" />
35
+ </clipPath>
36
+ </defs>
37
+ </svg>
38
+ );
39
+ });
40
+
41
+ UsageMeter.displayName = 'UsageMeterIcon';
@@ -0,0 +1,22 @@
1
+ import { forwardRef, SVGProps } from 'react';
2
+
3
+ type UserCardProps = SVGProps<SVGSVGElement>;
4
+
5
+ type UserCardRef = SVGSVGElement;
6
+
7
+ export const UserCard = forwardRef<UserCardRef, UserCardProps>((delegated, ref) => {
8
+ return (
9
+ <svg ref={ref} width="17" height="16" viewBox="0 0 17 16" fill="none" {...delegated}>
10
+ <rect x="2.184" y="4.2" width="13.6" height="8.6" rx=".8" fill="#BFF6F8" stroke="#528693" strokeWidth=".4" />
11
+ <circle cx="5.984" cy="8.5" r="2.2" fill="#fff" stroke="#528693" strokeWidth=".4" />
12
+ <path
13
+ d="M13.484 8.2a.7.7 0 1 0 0-1.4h-3.5a.7.7 0 1 0 0 1.4h3.5ZM10.484 10.2a.7.7 0 1 0 0-1.4h-.5a.7.7 0 1 0 0 1.4h.5Z"
14
+ fill="#fff"
15
+ stroke="#528693"
16
+ strokeWidth=".4"
17
+ />
18
+ </svg>
19
+ );
20
+ });
21
+
22
+ UserCard.displayName = 'UserCardIcon';
@@ -13,7 +13,7 @@ import { $createHorizontalRuleNode } from '@lexical/react/LexicalHorizontalRuleN
13
13
  import { $createHeadingNode, $createQuoteNode } from '@lexical/rich-text';
14
14
  import { $createTableCellNode, $createTableNode, $createTableRowNode } from '@lexical/table';
15
15
 
16
- import type { CrystallizeRichTextNode, CrystallizeRichText } from './crystallize-rich-text-types';
16
+ import type { CrystallizeRichTextNode, CrystallizeRichText } from '../types/crystallize-rich-text-types';
17
17
 
18
18
  export function composeInitialState({ richText }: { richText: CrystallizeRichText }) {
19
19
  return function setLexicalState() {