@butternutbox/pawprint-native 0.0.1 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (182) hide show
  1. package/.turbo/turbo-build.log +15 -15
  2. package/CHANGELOG.md +16 -0
  3. package/COMPONENT_GUIDELINES.md +111 -4
  4. package/dist/index.cjs +12370 -1455
  5. package/dist/index.cjs.map +1 -1
  6. package/dist/index.d.cts +1110 -11
  7. package/dist/index.d.ts +1110 -11
  8. package/dist/index.js +12324 -1455
  9. package/dist/index.js.map +1 -1
  10. package/package.json +28 -9
  11. package/src/__mocks__/asset-stub.ts +1 -0
  12. package/src/__mocks__/emotion-native.tsx +18 -0
  13. package/src/__mocks__/react-native-gesture-handler.tsx +41 -0
  14. package/src/__mocks__/react-native-reanimated.tsx +79 -0
  15. package/src/__mocks__/react-native-safe-area-context.tsx +6 -0
  16. package/src/__mocks__/react-native-svg.tsx +27 -0
  17. package/src/__mocks__/react-native-worklets.tsx +11 -0
  18. package/src/__mocks__/react-native.tsx +338 -0
  19. package/src/__mocks__/rn-primitives/avatar.tsx +24 -0
  20. package/src/__mocks__/rn-primitives/checkbox.tsx +19 -0
  21. package/src/__mocks__/rn-primitives/select.tsx +116 -0
  22. package/src/__mocks__/rn-primitives/slider.tsx +40 -0
  23. package/src/__mocks__/rn-primitives/slot.tsx +30 -0
  24. package/src/__mocks__/rn-primitives/switch.tsx +24 -0
  25. package/src/__mocks__/rn-primitives/toggle.tsx +16 -0
  26. package/src/components/atoms/Avatar/Avatar.stories.tsx +57 -49
  27. package/src/components/atoms/Avatar/Avatar.test.tsx +269 -0
  28. package/src/components/atoms/Avatar/Avatar.tsx +68 -22
  29. package/src/components/atoms/Avatar/index.ts +1 -6
  30. package/src/components/atoms/Badge/Badge.stories.tsx +5 -29
  31. package/src/components/atoms/Badge/Badge.test.tsx +90 -0
  32. package/src/components/atoms/Button/Button.test.tsx +123 -0
  33. package/src/components/atoms/Button/Button.tsx +1 -1
  34. package/src/components/atoms/CarouselControls/CarouselControls.stories.tsx +217 -0
  35. package/src/components/atoms/CarouselControls/CarouselControls.tsx +127 -0
  36. package/src/components/atoms/CarouselControls/index.ts +2 -0
  37. package/src/components/atoms/Hint/Hint.test.tsx +36 -0
  38. package/src/components/atoms/Icon/Icon.test.tsx +98 -0
  39. package/src/components/atoms/Icon/Icon.tsx +5 -1
  40. package/src/components/atoms/IconButton/IconButton.test.tsx +101 -0
  41. package/src/components/atoms/Illustration/Illustration.test.tsx +55 -0
  42. package/src/components/atoms/Input/Input.stories.tsx +129 -86
  43. package/src/components/atoms/Input/Input.test.tsx +306 -0
  44. package/src/components/atoms/Input/Input.tsx +9 -1
  45. package/src/components/atoms/Input/InputField.tsx +226 -74
  46. package/src/components/atoms/Link/Link.test.tsx +89 -0
  47. package/src/components/atoms/Logo/Logo.registry.ts +30 -5
  48. package/src/components/atoms/Logo/Logo.stories.tsx +108 -0
  49. package/src/components/atoms/Logo/Logo.test.tsx +56 -0
  50. package/src/components/atoms/Logo/assets/BCorp.tsx +113 -0
  51. package/src/components/atoms/Logo/assets/ButternutFavicon.tsx +33 -0
  52. package/src/components/atoms/Logo/assets/ButternutPrimary.tsx +294 -0
  53. package/src/components/atoms/Logo/assets/ButternutTabbedBottom.tsx +294 -0
  54. package/src/components/atoms/Logo/assets/ButternutTabbedTop.tsx +294 -0
  55. package/src/components/atoms/Logo/assets/ButternutWordmark.tsx +274 -0
  56. package/src/components/atoms/Logo/assets/PsiBufetFavicon.tsx +45 -0
  57. package/src/components/atoms/Logo/assets/PsiBufetPrimary.tsx +218 -0
  58. package/src/components/atoms/Logo/assets/PsiBufetTabbedBottom.tsx +218 -0
  59. package/src/components/atoms/Logo/assets/PsiBufetTabbedTop.tsx +218 -0
  60. package/src/components/atoms/Logo/assets/PsiBufetWordmark.tsx +195 -0
  61. package/src/components/atoms/Logo/assets/index.ts +11 -0
  62. package/src/components/atoms/NumberInput/NumberInput.stories.tsx +183 -0
  63. package/src/components/atoms/NumberInput/NumberInput.test.tsx +261 -0
  64. package/src/components/atoms/NumberInput/NumberInput.tsx +129 -0
  65. package/src/components/atoms/NumberInput/NumberInputField.tsx +77 -0
  66. package/src/components/atoms/NumberInput/index.ts +4 -0
  67. package/src/components/atoms/Spinner/Spinner.test.tsx +46 -0
  68. package/src/components/atoms/Spinner/Spinner.tsx +14 -5
  69. package/src/components/atoms/Switch/Switch.test.tsx +92 -0
  70. package/src/components/atoms/Switch/Switch.tsx +16 -13
  71. package/src/components/atoms/Tag/Tag.test.tsx +70 -0
  72. package/src/components/atoms/TextArea/TextArea.stories.tsx +303 -0
  73. package/src/components/atoms/TextArea/TextArea.test.tsx +416 -0
  74. package/src/components/atoms/TextArea/TextArea.tsx +171 -0
  75. package/src/components/atoms/TextArea/TextAreaField.tsx +304 -0
  76. package/src/components/atoms/TextArea/TextAreaLabel.tsx +103 -0
  77. package/src/components/atoms/TextArea/index.ts +6 -0
  78. package/src/components/atoms/Typography/Typography.test.tsx +94 -0
  79. package/src/components/atoms/index.ts +3 -0
  80. package/src/components/molecules/Accordion/Accordion.stories.tsx +177 -0
  81. package/src/components/molecules/Accordion/Accordion.test.tsx +185 -0
  82. package/src/components/molecules/Accordion/Accordion.tsx +284 -0
  83. package/src/components/molecules/Accordion/index.ts +6 -0
  84. package/src/components/molecules/Animated/Animated.stories.tsx +254 -0
  85. package/src/components/molecules/Animated/Animated.tsx +283 -0
  86. package/src/components/molecules/Animated/index.ts +10 -0
  87. package/src/components/molecules/ButtonDock/ButtonDock.test.tsx +83 -0
  88. package/src/components/molecules/ButtonGroup/ButtonGroup.stories.tsx +8 -14
  89. package/src/components/molecules/ButtonGroup/ButtonGroup.test.tsx +73 -0
  90. package/src/components/molecules/ButtonGroup/ButtonGroup.tsx +25 -3
  91. package/src/components/molecules/Checkbox/Checkbox.stories.tsx +72 -0
  92. package/src/components/molecules/Checkbox/Checkbox.test.tsx +117 -0
  93. package/src/components/molecules/Checkbox/Checkbox.tsx +101 -95
  94. package/src/components/molecules/CopyField/CopyField.stories.tsx +313 -0
  95. package/src/components/molecules/CopyField/CopyField.test.tsx +431 -0
  96. package/src/components/molecules/CopyField/CopyField.tsx +156 -0
  97. package/src/components/molecules/CopyField/CopyFieldInput.tsx +127 -0
  98. package/src/components/molecules/CopyField/hooks/index.ts +1 -0
  99. package/src/components/molecules/CopyField/hooks/useCopyField.ts +25 -0
  100. package/src/components/molecules/CopyField/index.ts +4 -0
  101. package/src/components/molecules/DatePicker/DatePicker.stories.tsx +298 -0
  102. package/src/components/molecules/DatePicker/DatePicker.test.tsx +201 -0
  103. package/src/components/molecules/DatePicker/DatePicker.tsx +590 -0
  104. package/src/components/molecules/DatePicker/index.ts +2 -0
  105. package/src/components/molecules/Drawer/Drawer.stories.tsx +285 -0
  106. package/src/components/molecules/Drawer/Drawer.test.tsx +180 -0
  107. package/src/components/molecules/Drawer/Drawer.tsx +187 -0
  108. package/src/components/molecules/Drawer/DrawerBody.tsx +80 -0
  109. package/src/components/molecules/Drawer/DrawerClose.tsx +76 -0
  110. package/src/components/molecules/Drawer/DrawerContent.tsx +339 -0
  111. package/src/components/molecules/Drawer/DrawerContext.ts +19 -0
  112. package/src/components/molecules/Drawer/DrawerDescription.tsx +31 -0
  113. package/src/components/molecules/Drawer/DrawerDragContext.ts +11 -0
  114. package/src/components/molecules/Drawer/DrawerFooter.tsx +49 -0
  115. package/src/components/molecules/Drawer/DrawerFooterContext.ts +6 -0
  116. package/src/components/molecules/Drawer/DrawerGrabber.tsx +62 -0
  117. package/src/components/molecules/Drawer/DrawerHeader.tsx +244 -0
  118. package/src/components/molecules/Drawer/DrawerHeaderContext.ts +13 -0
  119. package/src/components/molecules/Drawer/DrawerOverlay.tsx +53 -0
  120. package/src/components/molecules/Drawer/DrawerTitle.tsx +32 -0
  121. package/src/components/molecules/Drawer/index.ts +12 -0
  122. package/src/components/molecules/FilterTab/FilterTab.stories.tsx +210 -0
  123. package/src/components/molecules/FilterTab/FilterTab.tsx +310 -0
  124. package/src/components/molecules/FilterTab/index.ts +2 -0
  125. package/src/components/molecules/MessageCard/MessageCard.stories.tsx +169 -0
  126. package/src/components/molecules/MessageCard/MessageCard.tsx +362 -0
  127. package/src/components/molecules/MessageCard/index.ts +10 -0
  128. package/src/components/molecules/Notification/Notification.stories.tsx +219 -0
  129. package/src/components/molecules/Notification/Notification.tsx +426 -0
  130. package/src/components/molecules/Notification/index.ts +2 -0
  131. package/src/components/molecules/NumberField/NumberField.stories.tsx +231 -0
  132. package/src/components/molecules/NumberField/NumberField.tsx +186 -0
  133. package/src/components/molecules/NumberField/NumberFieldInput.tsx +287 -0
  134. package/src/components/molecules/NumberField/index.ts +2 -0
  135. package/src/components/molecules/PasswordField/PasswordField.stories.tsx +362 -0
  136. package/src/components/molecules/PasswordField/PasswordField.test.tsx +369 -0
  137. package/src/components/molecules/PasswordField/PasswordField.tsx +194 -0
  138. package/src/components/molecules/PasswordField/PasswordFieldError.tsx +52 -0
  139. package/src/components/molecules/PasswordField/PasswordFieldInput.tsx +73 -0
  140. package/src/components/molecules/PasswordField/PasswordFieldRequirements.tsx +92 -0
  141. package/src/components/molecules/PasswordField/hooks/index.ts +2 -0
  142. package/src/components/molecules/PasswordField/hooks/usePasswordField.ts +113 -0
  143. package/src/components/molecules/PasswordField/index.ts +10 -0
  144. package/src/components/molecules/PictureSelector/PictureSelector.stories.tsx +243 -0
  145. package/src/components/molecules/PictureSelector/PictureSelector.tsx +313 -0
  146. package/src/components/molecules/PictureSelector/index.ts +5 -0
  147. package/src/components/molecules/Progress/Progress.stories.tsx +145 -0
  148. package/src/components/molecules/Progress/Progress.tsx +184 -0
  149. package/src/components/molecules/Progress/index.ts +2 -0
  150. package/src/components/molecules/Radio/Radio.test.tsx +104 -0
  151. package/src/components/molecules/Radio/Radio.tsx +1 -2
  152. package/src/components/molecules/SearchField/SearchField.stories.tsx +242 -0
  153. package/src/components/molecules/SearchField/SearchField.test.tsx +318 -0
  154. package/src/components/molecules/SearchField/SearchField.tsx +143 -0
  155. package/src/components/molecules/SearchField/SearchFieldInput.tsx +63 -0
  156. package/src/components/molecules/SearchField/hooks/index.ts +1 -0
  157. package/src/components/molecules/SearchField/hooks/useSearchField.ts +56 -0
  158. package/src/components/molecules/SearchField/index.ts +4 -0
  159. package/src/components/molecules/SegmentedControl/SegmentedControl.stories.tsx +31 -8
  160. package/src/components/molecules/SegmentedControl/SegmentedControl.test.tsx +141 -0
  161. package/src/components/molecules/SegmentedControl/SegmentedControl.tsx +237 -23
  162. package/src/components/molecules/SelectField/SelectField.stories.tsx +320 -0
  163. package/src/components/molecules/SelectField/SelectField.test.tsx +254 -0
  164. package/src/components/molecules/SelectField/SelectField.tsx +236 -0
  165. package/src/components/molecules/SelectField/SelectFieldContent.tsx +85 -0
  166. package/src/components/molecules/SelectField/SelectFieldItem.tsx +133 -0
  167. package/src/components/molecules/SelectField/SelectFieldTrigger.tsx +170 -0
  168. package/src/components/molecules/SelectField/SelectFieldValue.tsx +31 -0
  169. package/src/components/molecules/SelectField/hooks/index.ts +2 -0
  170. package/src/components/molecules/SelectField/hooks/useSelectField.ts +84 -0
  171. package/src/components/molecules/SelectField/index.ts +10 -0
  172. package/src/components/molecules/Slider/Slider.test.tsx +102 -0
  173. package/src/components/molecules/Slider/Slider.tsx +293 -180
  174. package/src/components/molecules/Tooltip/Tooltip.stories.tsx +168 -0
  175. package/src/components/molecules/Tooltip/Tooltip.tsx +326 -0
  176. package/src/components/molecules/Tooltip/index.ts +2 -0
  177. package/src/components/molecules/index.ts +15 -0
  178. package/src/test-utils.tsx +20 -0
  179. package/tsconfig.json +1 -1
  180. package/tsup.config.ts +16 -2
  181. package/vitest.config.ts +114 -0
  182. package/vitest.setup.ts +16 -0
@@ -0,0 +1,113 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ import { Ref, forwardRef } from "react"
4
+ const SvgBCorp = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
5
+ <svg
6
+ width={80}
7
+ height={135}
8
+ viewBox="0 0 80 135"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ ref={ref}
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M23.3491 38.928H39.8967C43.926 38.928 49.2213 38.928 51.9682 40.5841C53.6231 41.5548 54.9908 42.9479 55.9313 44.621C56.8719 46.2942 57.3515 48.1873 57.3213 50.1068C57.4004 52.3029 56.7913 54.4688 55.5791 56.3012C54.367 58.1335 52.6126 59.5405 50.5616 60.3252V60.4576C56.1795 61.6086 59.2408 65.8235 59.2408 71.446C59.2408 78.1534 54.4503 84.546 45.3905 84.546H23.3491V38.928ZM29.4138 58.5365H41.5432C48.4352 58.5365 51.2483 56.0523 51.2483 51.2578C51.2483 44.9314 46.7805 44.0371 41.5432 44.0371H29.4138V58.5365ZM29.4138 79.4286H44.6376C49.8749 79.4286 53.1927 76.2405 53.1927 71.2556C53.1927 65.3101 48.4104 63.654 43.2641 63.654H29.4138V79.4286Z"
16
+ fill="#522A10"
17
+ />
18
+ <path
19
+ d="M74.7295 61.7495C74.7312 68.612 72.6994 75.3209 68.8911 81.0277C65.0828 86.7345 59.6691 91.1829 53.3346 93.8102C47.0002 96.4375 40.0295 97.1258 33.3042 95.788C26.5789 94.4502 20.401 91.1464 15.5519 86.2944C10.7028 81.4424 7.40021 75.2602 6.0619 68.5297C4.72359 61.7991 5.40963 54.8225 8.03327 48.4822C10.6569 42.1418 15.1003 36.7226 20.8014 32.9098C26.5026 29.097 33.2055 27.0619 40.0624 27.0619C49.2552 27.0619 58.0717 30.7162 64.5728 37.2212C71.0739 43.7261 74.7273 52.549 74.7295 61.7495ZM40.0624 21.7706C32.1631 21.7706 24.4412 24.115 17.8734 28.5074C11.3055 32.8998 6.18659 39.1429 3.16405 46.447C0.141512 53.7512 -0.648902 61.7884 0.892769 69.5421C2.43444 77.2959 6.23895 84.418 11.8251 90.0077C17.4113 95.5973 24.5283 99.4035 32.276 100.945C40.0237 102.486 48.054 101.693 55.3515 98.6669C62.649 95.6404 68.8859 90.5159 73.2733 83.9417C77.6607 77.3675 80.0016 69.6387 79.9999 61.7329C79.9977 51.1335 75.7891 40.9689 68.2996 33.4748C60.8101 25.9806 50.653 21.7706 40.0624 21.7706Z"
20
+ fill="#522A10"
21
+ />
22
+ <path
23
+ d="M79.9087 110.125H0.207275V115.367H79.9087V110.125Z"
24
+ fill="#522A10"
25
+ />
26
+ <path
27
+ d="M77.4184 104.362H77.6997C77.7796 104.363 77.8588 104.346 77.9313 104.312C78.0067 104.28 78.0689 104.223 78.1079 104.151C78.147 104.078 78.1605 103.995 78.1464 103.914C78.1549 103.836 78.1375 103.758 78.0968 103.691C78.065 103.635 78.0155 103.591 77.9561 103.567C77.8942 103.533 77.827 103.511 77.7576 103.5H76.9302V104.386L77.4184 104.362ZM77.6086 103.12C77.8698 103.097 78.1305 103.168 78.345 103.318C78.4274 103.393 78.4918 103.486 78.5333 103.589C78.5749 103.692 78.5925 103.803 78.585 103.914C78.5923 104.016 78.5776 104.119 78.5419 104.214C78.5062 104.31 78.4503 104.397 78.3781 104.469C78.2258 104.589 78.0416 104.661 77.8486 104.676L78.676 105.902H78.2209L77.4597 104.701H77.0047V105.902H76.5661V103.12H77.6086ZM75.656 105.314C75.742 105.556 75.8804 105.777 76.0614 105.96C76.2373 106.147 76.4519 106.294 76.6903 106.39C76.933 106.495 77.1955 106.546 77.4597 106.539C77.7266 106.546 77.9919 106.495 78.2375 106.39C78.4698 106.288 78.6804 106.142 78.858 105.96C79.0362 105.775 79.1742 105.555 79.2634 105.314C79.3736 105.052 79.4272 104.77 79.4206 104.486C79.4287 104.202 79.3751 103.919 79.2634 103.658C79.1742 103.417 79.0362 103.197 78.858 103.012C78.6758 102.838 78.4662 102.695 78.2375 102.59C77.9912 102.486 77.7268 102.432 77.4597 102.432C77.1953 102.432 76.9336 102.486 76.6903 102.59C76.4557 102.689 76.2423 102.832 76.0614 103.012C75.8804 103.195 75.742 103.415 75.656 103.658C75.5443 103.919 75.4907 104.202 75.4988 104.486C75.4922 104.77 75.5458 105.052 75.656 105.314ZM75.2506 103.583C75.3737 103.303 75.5476 103.047 75.7636 102.83C75.9871 102.618 76.248 102.449 76.5331 102.333C76.8237 102.211 77.1362 102.149 77.4514 102.151C77.7722 102.148 78.0902 102.21 78.3864 102.333C78.6647 102.448 78.9177 102.617 79.131 102.83C79.35 103.046 79.5267 103.302 79.6523 103.583C79.7779 103.882 79.8426 104.203 79.8426 104.527C79.8426 104.851 79.7779 105.172 79.6523 105.471C79.5283 105.753 79.3513 106.009 79.131 106.225C78.9202 106.443 78.6667 106.615 78.3864 106.73C78.0885 106.846 77.7713 106.905 77.4514 106.904C77.1371 106.905 76.8254 106.846 76.5331 106.73C75.9559 106.497 75.4947 106.044 75.2506 105.471C75.125 105.172 75.0603 104.851 75.0603 104.527C75.0603 104.203 75.125 103.882 75.2506 103.583Z"
28
+ fill="#522A10"
29
+ />
30
+ <path
31
+ d="M9.8877 4.21555C9.70097 3.89983 9.46011 3.61952 9.17615 3.38749C8.89343 3.1595 8.57464 2.98038 8.23294 2.85753C7.87098 2.73212 7.49073 2.66775 7.1077 2.66707C6.47585 2.64995 5.84986 2.79234 5.28747 3.0811C4.80377 3.35627 4.39473 3.74576 4.09604 4.21555C3.77784 4.69825 3.5481 5.23381 3.41759 5.79715C3.27762 6.39981 3.2082 7.01673 3.21075 7.63545C3.20855 8.2323 3.27799 8.82725 3.41759 9.40751C3.55305 9.95116 3.78268 10.4668 4.09604 10.9311C4.40428 11.3902 4.81867 11.768 5.30402 12.0325C5.86641 12.3212 6.4924 12.4636 7.12425 12.4465C7.54464 12.4691 7.96501 12.4018 8.35735 12.249C8.74969 12.0962 9.10498 11.8615 9.39954 11.5605C9.95961 10.8888 10.2927 10.0568 10.351 9.18393H13.4206C13.3574 10.0414 13.1475 10.8817 12.8001 11.6681C12.4815 12.3676 12.0289 12.9978 11.468 13.523C10.905 14.0412 10.2438 14.441 9.52365 14.6988C8.7396 14.9742 7.91378 15.1115 7.08288 15.1046C6.0605 15.1214 5.04591 14.924 4.10432 14.5249C3.25697 14.1649 2.49766 13.6253 1.87867 12.9433C1.25912 12.2522 0.783728 11.4443 0.480397 10.5668C0.153158 9.62172 -0.00916941 8.62734 0.000517615 7.62717C-0.0104133 6.60798 0.151858 5.59434 0.480397 4.62958C0.781397 3.73865 1.25674 2.91667 1.87867 2.21164C2.49052 1.51509 3.24738 0.961112 4.09604 0.588631C5.03703 0.186784 6.05164 -0.013486 7.07461 0.000704704C7.8385 -0.00431508 8.59827 0.1131 9.32508 0.348492C10.0128 0.563037 10.6551 0.902706 11.2198 1.35045C11.7921 1.80082 12.2653 2.36464 12.6098 3.00658C12.9807 3.69459 13.2139 4.4484 13.2965 5.22579H10.2352C10.1914 4.86838 10.073 4.52418 9.8877 4.21555Z"
32
+ fill="#522A10"
33
+ />
34
+ <path
35
+ d="M17.5575 12.2644C17.809 12.4875 18.1024 12.6581 18.4207 12.7662C18.739 12.8743 19.0756 12.9176 19.4108 12.8937C19.9389 12.9178 20.4616 12.7791 20.9084 12.4962C21.2598 12.2861 21.5285 11.9617 21.6696 11.5771H24.1517C23.8692 12.6643 23.213 13.6172 22.2984 14.2683C21.3913 14.8341 20.3387 15.122 19.2702 15.0964C18.5129 15.1107 17.76 14.9786 17.0528 14.7072C16.425 14.4583 15.86 14.0738 15.398 13.581C14.9311 13.0822 14.5707 12.4933 14.339 11.8503C14.0961 11.1112 13.9896 10.3339 14.0246 9.55661C14.0168 8.81345 14.1458 8.0752 14.4052 7.3788C14.6444 6.72932 15.0147 6.13609 15.493 5.63605C15.9713 5.13601 16.5473 4.73987 17.1852 4.4723C17.8693 4.17729 18.608 4.03055 19.3529 4.04171C20.1552 4.02291 20.9502 4.19907 21.6696 4.5551C22.3223 4.88284 22.8891 5.35933 23.3243 5.94625C23.7545 6.54087 24.0663 7.21278 24.2427 7.92532C24.4344 8.68223 24.5015 9.46538 24.4413 10.2439H16.9121C16.861 10.9752 17.092 11.6983 17.5575 12.2644ZM20.7925 6.77432C20.5887 6.57149 20.3434 6.41536 20.0734 6.31671C19.8034 6.21807 19.5152 6.17925 19.2288 6.20295C18.8356 6.19273 18.4451 6.27201 18.087 6.43481C17.8063 6.57474 17.5583 6.77224 17.3589 7.01445C17.1859 7.23028 17.0566 7.4778 16.9783 7.74315C16.9109 7.96713 16.8665 8.19743 16.8459 8.43044H21.5123C21.4342 7.82124 21.1846 7.24685 20.7925 6.77432Z"
36
+ fill="#522A10"
37
+ />
38
+ <path
39
+ d="M28.3961 4.32319V6.26914H28.4375C28.6977 5.61181 29.1542 5.05083 29.7447 4.6627C30.044 4.46732 30.3701 4.31669 30.7128 4.21554C31.0523 4.10617 31.4068 4.0503 31.7636 4.04993C31.9768 4.05361 32.1884 4.08706 32.3924 4.1493V6.81566C32.26 6.81566 32.0945 6.76598 31.9042 6.74942C31.7139 6.73285 31.5319 6.74942 31.3581 6.74942C30.9 6.73765 30.4449 6.82817 30.0261 7.0144C29.6776 7.17656 29.3759 7.42441 29.149 7.73481C28.9183 8.05052 28.7575 8.41187 28.6774 8.79473C28.5817 9.2242 28.5345 9.66306 28.5368 10.1031V14.8148H25.6658V4.32319H28.3961Z"
40
+ fill="#522A10"
41
+ />
42
+ <path
43
+ d="M40.0622 4.32313V6.24424H37.9607V11.4196C37.9205 11.7622 38.009 12.1075 38.2089 12.3885C38.4914 12.5842 38.8358 12.6696 39.1769 12.6286H39.6402C39.7822 12.6159 39.9232 12.5938 40.0622 12.5624V14.7899C39.7885 14.8345 39.512 14.8594 39.2348 14.8644H38.4074C37.9866 14.8644 37.5663 14.834 37.1498 14.7733C36.7804 14.7215 36.4239 14.6007 36.0991 14.4172C35.7962 14.2385 35.5474 13.981 35.3792 13.672C35.1905 13.2744 35.1024 12.8365 35.1227 12.3968V6.24424H33.3853V4.32313H35.1227V1.19305H37.9855V4.32313H40.0622Z"
44
+ fill="#522A10"
45
+ />
46
+ <path
47
+ d="M41.7336 2.70849V0.348511H44.6377V2.70849H41.7336ZM44.6377 4.32322V14.7734H41.7336V4.32322H44.6377Z"
48
+ fill="#522A10"
49
+ />
50
+ <path
51
+ d="M45.738 6.24437V4.32326H47.4507V3.4952C47.4303 3.07837 47.4929 2.66165 47.635 2.26928C47.777 1.87692 47.9956 1.51675 48.2781 1.20974C48.6334 0.893354 49.0488 0.651838 49.4994 0.49961C49.95 0.347383 50.4267 0.287561 50.9009 0.323715C51.1601 0.323715 51.4166 0.323715 51.6703 0.323715L52.415 0.381681V2.55949C52.0662 2.51885 51.7153 2.49949 51.3642 2.50152C51.2149 2.48781 51.0645 2.50499 50.9221 2.55201C50.7798 2.59902 50.6486 2.67485 50.5368 2.77479C50.343 3.04002 50.2519 3.36659 50.2803 3.69394V4.31498H52.2578V6.23609H50.3134V14.7652H47.4507V6.24437H45.738Z"
52
+ fill="#522A10"
53
+ />
54
+ <path
55
+ d="M54.2354 2.70849V0.348511H57.1064V2.70849H54.2354ZM57.1064 4.32322V14.7734H54.2354V4.32322H57.1064Z"
56
+ fill="#522A10"
57
+ />
58
+ <path
59
+ d="M61.6237 12.2643C62.091 12.628 62.6578 12.841 63.2488 12.875C63.8399 12.909 64.4273 12.7625 64.9332 12.4548C65.2886 12.2472 65.5607 11.9222 65.7026 11.5356H68.1848C67.8991 12.6214 67.2436 13.5732 66.3315 14.2269C65.4244 14.7927 64.3718 15.0805 63.3032 15.0549C62.5778 15.0479 61.8599 14.9075 61.1852 14.6409C60.5569 14.393 59.9917 14.0083 59.5304 13.5147C59.0606 13.0181 58.6999 12.4286 58.4714 11.7841C58.2138 11.0699 58.085 10.3158 58.0908 9.55658C58.0856 8.8129 58.2174 8.07463 58.4796 7.37877C58.7073 6.73082 59.0649 6.13626 59.5304 5.63155C59.9968 5.13571 60.56 4.74111 61.1852 4.47226C61.8722 4.17731 62.6137 4.03059 63.3612 4.04167C64.1633 4.02451 64.9579 4.20059 65.6778 4.55507C66.3291 4.8851 66.8954 5.36119 67.3326 5.94622C67.7635 6.53934 68.0728 7.21196 68.2427 7.92529C68.4326 8.68254 68.5024 9.46494 68.4495 10.2439H60.9204C60.8896 10.9824 61.1411 11.7049 61.6237 12.2643ZM64.867 6.77428C64.6622 6.57281 64.4167 6.41757 64.147 6.31901C63.8772 6.22046 63.5895 6.18087 63.3032 6.20292C62.9099 6.19182 62.5193 6.27114 62.1615 6.43478C61.8794 6.57252 61.6309 6.77036 61.4334 7.01442C61.2604 7.23025 61.1311 7.47777 61.0528 7.74312C60.9853 7.96709 60.941 8.19739 60.9204 8.43041H65.5785C65.4989 7.82314 65.2526 7.24987 64.867 6.77428Z"
60
+ fill="#522A10"
61
+ />
62
+ <path
63
+ d="M77.1537 13.4402C76.8486 13.9731 76.3862 14.3983 75.8299 14.6575C75.246 14.9133 74.6139 15.0404 73.9765 15.0301C73.2669 15.0457 72.5636 14.8924 71.9246 14.5829C71.3442 14.2848 70.8423 13.8535 70.4602 13.3243C70.078 12.7834 69.7977 12.1772 69.6328 11.5357C69.4355 10.8522 69.3379 10.1438 69.3432 9.43237C69.339 8.74551 69.4366 8.06182 69.6328 7.40362C69.798 6.78003 70.0787 6.19299 70.4602 5.67296C70.8646 5.14271 71.3889 4.71608 71.9902 4.42817C72.5914 4.14026 73.2523 3.99929 73.9186 4.01683C74.5285 4.01441 75.131 4.1503 75.6809 4.4143C76.2279 4.65985 76.689 5.0636 77.0048 5.57359V0.348511H79.8757V14.7734H77.1454V13.4402H77.1537ZM77.0296 8.27308C76.9548 7.90082 76.8148 7.54477 76.6159 7.22144C76.4202 6.92211 76.1601 6.67031 75.8547 6.48446C75.4985 6.28667 75.0953 6.18936 74.6881 6.20292C74.2733 6.19171 73.8627 6.28874 73.4967 6.48446C73.1786 6.66664 72.9112 6.92572 72.7189 7.238C72.5139 7.56211 72.3708 7.92151 72.297 8.29792C72.2063 8.70565 72.1618 9.12232 72.1646 9.54002C72.1664 9.94699 72.2136 10.3525 72.3052 10.749C72.3936 11.1354 72.5505 11.5028 72.7686 11.8338C72.9825 12.1477 73.2656 12.4083 73.5959 12.5956C73.9401 12.8025 74.3364 12.906 74.7377 12.8937C75.1503 12.909 75.5593 12.8117 75.9209 12.6121C76.2305 12.4238 76.489 12.1622 76.6738 11.8503C76.8687 11.517 77.0058 11.153 77.0792 10.7738C77.1627 10.3595 77.2042 9.93783 77.2033 9.51518C77.1884 9.09626 77.1301 8.68001 77.0296 8.27308Z"
64
+ fill="#522A10"
65
+ />
66
+ <path
67
+ d="M7.19849 125.668C7.10044 125.156 6.82345 124.695 6.41715 124.369C6.01085 124.043 5.50178 123.872 4.98112 123.887C2.97886 123.887 2.22595 125.601 2.22595 127.373C2.22595 129.146 2.97886 130.777 4.98112 130.777C5.282 130.78 5.58054 130.724 5.85946 130.611C6.13838 130.498 6.39215 130.33 6.60606 130.119C6.81998 129.907 6.9898 129.655 7.10569 129.377C7.22159 129.099 7.28125 128.801 7.28123 128.5H9.44896C9.42873 129.066 9.29693 129.622 9.06115 130.137C8.82537 130.652 8.49025 131.115 8.07506 131.499C7.65987 131.884 7.17279 132.183 6.64183 132.379C6.11086 132.574 5.54648 132.663 4.98112 132.64C1.84535 132.64 0.0168457 130.288 0.0168457 127.357C0.0168457 124.426 1.87017 121.999 4.98112 121.999C6.04066 121.928 7.08688 122.268 7.90316 122.948C8.71945 123.628 9.24329 124.595 9.36623 125.651L7.19849 125.668Z"
68
+ fill="#522A10"
69
+ />
70
+ <path
71
+ d="M14.1073 124.856C15.1044 124.902 16.0453 125.331 16.7346 126.054C17.4239 126.776 17.8086 127.737 17.8086 128.736C17.8086 129.735 17.4239 130.695 16.7346 131.418C16.0453 132.14 15.1044 132.569 14.1073 132.615C13.1102 132.569 12.1692 132.14 11.4799 131.418C10.7906 130.695 10.406 129.735 10.406 128.736C10.406 127.737 10.7906 126.776 11.4799 126.054C12.1692 125.331 13.1102 124.902 14.1073 124.856ZM14.1073 131.092C15.489 131.092 15.9027 129.907 15.9027 128.74C15.9027 127.572 15.489 126.38 14.1073 126.38C12.7256 126.38 12.3698 127.597 12.3698 128.74C12.3698 129.883 12.7421 131.092 14.1073 131.092Z"
72
+ fill="#522A10"
73
+ />
74
+ <path
75
+ d="M19.1626 125.047H21.0821V126.413C21.2814 125.953 21.6092 125.561 22.0261 125.283C22.443 125.006 22.9312 124.854 23.4319 124.848C23.5805 124.848 23.7282 124.871 23.8704 124.914V126.769C23.6331 126.724 23.3921 126.702 23.1506 126.703C21.6696 126.703 21.1566 127.763 21.1566 129.063V132.375H19.1626V125.047Z"
76
+ fill="#522A10"
77
+ />
78
+ <path
79
+ d="M24.6897 125.055H26.6092V125.999C26.838 125.63 27.1613 125.33 27.5454 125.129C27.9296 124.928 28.3606 124.834 28.7935 124.856C31.1019 124.856 32.103 126.719 32.103 128.814C32.103 130.777 31.0274 132.615 28.8762 132.615C28.4465 132.626 28.0209 132.53 27.637 132.336C27.2531 132.143 26.9228 131.857 26.6754 131.506V135H24.6897V125.055ZM30.1421 128.756C30.1421 127.589 29.6705 126.38 28.3798 126.38C27.0891 126.38 26.634 127.564 26.634 128.756C26.634 129.949 27.0891 131.092 28.3964 131.092C29.7036 131.092 30.1421 129.949 30.1421 128.756Z"
80
+ fill="#522A10"
81
+ />
82
+ <path
83
+ d="M36.5875 124.856C37.3586 124.838 38.1176 125.05 38.7676 125.466C39.4175 125.882 39.9291 126.482 40.2368 127.189C40.5445 127.897 40.6344 128.681 40.4951 129.44C40.3558 130.199 39.9936 130.9 39.4547 131.452C38.9158 132.004 38.2247 132.383 37.4696 132.541C36.7145 132.698 35.9297 132.627 35.2153 132.336C34.501 132.045 33.8895 131.547 33.4589 130.907C33.0284 130.266 32.7983 129.512 32.7981 128.74C32.7585 128.228 32.8286 127.713 33.0038 127.23C33.179 126.747 33.4551 126.307 33.8138 125.939C34.1726 125.571 34.6055 125.285 35.0839 125.098C35.5622 124.911 36.0748 124.829 36.5875 124.856ZM36.5875 131.092C37.9692 131.092 38.3829 129.907 38.3829 128.74C38.3829 127.572 37.9692 126.38 36.5875 126.38C35.2058 126.38 34.8169 127.564 34.8169 128.74C34.8169 129.916 35.2306 131.092 36.5875 131.092Z"
84
+ fill="#522A10"
85
+ />
86
+ <path
87
+ d="M41.6509 125.047H43.5704V126.413C43.7697 125.953 44.0975 125.561 44.5144 125.283C44.9313 125.006 45.4194 124.854 45.9202 124.848C46.0687 124.849 46.2164 124.871 46.3587 124.914V126.769C46.1186 126.724 45.8748 126.702 45.6306 126.703C44.1578 126.703 43.6449 127.763 43.6449 129.063V132.375H41.6509V125.047Z"
88
+ fill="#522A10"
89
+ />
90
+ <path
91
+ d="M46.9793 127.316C47.0951 125.428 48.7829 124.831 50.4294 124.831C51.8939 124.831 53.6562 125.163 53.6562 126.926V130.752C53.6189 131.316 53.7065 131.882 53.9127 132.408H51.8691C51.7902 132.175 51.7402 131.933 51.7201 131.688C51.3918 132.004 51.002 132.248 50.5749 132.406C50.1478 132.565 49.6927 132.633 49.238 132.607C47.8397 132.607 46.7559 131.903 46.7559 130.396C46.7559 128.74 48.0135 128.334 49.238 128.168C50.4625 128.003 51.6209 128.019 51.6209 127.2C51.6209 126.38 51.0251 126.198 50.3136 126.198C49.602 126.198 49.0477 126.512 48.9815 127.307L46.9793 127.316ZM51.6374 128.814C51.122 129.071 50.5579 129.215 49.9826 129.237C49.3621 129.369 48.7912 129.584 48.7912 130.321C48.7912 131.058 49.3787 131.257 50.0323 131.257C50.2557 131.282 50.4818 131.257 50.6939 131.182C50.9061 131.108 51.0988 130.987 51.2577 130.827C51.4166 130.668 51.5378 130.476 51.6121 130.263C51.6864 130.051 51.712 129.825 51.687 129.601L51.6374 128.814Z"
92
+ fill="#522A10"
93
+ />
94
+ <path
95
+ d="M57.7353 125.055H59.2163V126.413H57.7353V130.081C57.7353 130.769 57.909 130.909 58.5626 130.909C58.7734 130.913 58.984 130.897 59.1915 130.86V132.433C58.7996 132.488 58.404 132.513 58.0083 132.507C56.7755 132.507 55.6916 132.218 55.6916 130.752V126.421H54.4919V125.063H55.7165V122.861H57.7353V125.055Z"
96
+ fill="#522A10"
97
+ />
98
+ <path
99
+ d="M62.7573 123.921H60.7385V122.264H62.7573V123.921ZM60.7385 125.055H62.7573V132.416H60.7385V125.055Z"
100
+ fill="#522A10"
101
+ />
102
+ <path
103
+ d="M67.9035 124.856C68.6745 124.838 69.4335 125.05 70.0835 125.466C70.7335 125.882 71.245 126.482 71.5527 127.189C71.8604 127.897 71.9504 128.681 71.8111 129.44C71.6718 130.199 71.3096 130.9 70.7707 131.452C70.2318 132.004 69.5407 132.383 68.7856 132.541C68.0305 132.698 67.2457 132.627 66.5313 132.336C65.8169 132.045 65.2054 131.547 64.7749 130.907C64.3443 130.266 64.1143 129.512 64.1141 128.74C64.0758 128.228 64.1469 127.714 64.3226 127.231C64.4982 126.749 64.7744 126.309 65.1328 125.942C65.4913 125.575 65.9237 125.288 66.4014 125.101C66.8791 124.913 67.3911 124.83 67.9035 124.856ZM67.9035 131.092C69.2852 131.092 69.6989 129.907 69.6989 128.74C69.6989 127.572 69.2852 126.38 67.9035 126.38C66.5217 126.38 66.1494 127.597 66.1494 128.74C66.1494 129.883 66.5383 131.092 67.9035 131.092Z"
104
+ fill="#522A10"
105
+ />
106
+ <path
107
+ d="M73.0166 125.055H74.9361V126.082H74.9858C75.2229 125.702 75.5538 125.39 75.9465 125.175C76.3392 124.961 76.7805 124.851 77.228 124.856C79.3791 124.856 79.9169 126.065 79.9169 127.887V132.416H77.8981V128.276C77.8981 127.067 77.5424 126.463 76.6074 126.463C75.507 126.463 75.0354 127.084 75.0354 128.574V132.433H73.0166V125.055Z"
108
+ fill="#522A10"
109
+ />
110
+ </svg>
111
+ )
112
+ const ForwardRef = forwardRef(SvgBCorp)
113
+ export default ForwardRef
@@ -0,0 +1,33 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ import { Ref, forwardRef } from "react"
4
+ const SvgButternutFavicon = (
5
+ props: SVGProps<SVGSVGElement>,
6
+ ref: Ref<SVGSVGElement>
7
+ ) => (
8
+ <svg
9
+ width={104}
10
+ height={104}
11
+ viewBox="0 0 104 104"
12
+ fill="none"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ ref={ref}
15
+ {...props}
16
+ >
17
+ <rect width={104} height={104} fill="#522A10" />
18
+ <rect
19
+ x={4.0625}
20
+ y={4.0625}
21
+ width={95.875}
22
+ height={95.875}
23
+ rx={2.4375}
24
+ fill="#FFD54D"
25
+ />
26
+ <path
27
+ d="M75.5734 55.8238C77.462 58.6354 78.4062 62.0355 78.4062 66.0219C78.4062 72.4626 76.5338 77.421 72.791 80.9034C69.0482 84.3858 63.6287 86.125 56.5344 86.125H25.7969V17.875H55.0575C59.5226 17.875 63.3159 18.6181 66.4373 20.1062C69.5566 21.5944 71.9052 23.677 73.4811 26.3581C75.0569 29.0391 75.8458 32.1761 75.8458 35.773C75.8458 38.9762 75.1154 41.7798 73.6546 44.1817C72.1938 46.5836 70.0348 48.4554 67.1778 49.7949C70.8883 51.0039 73.6869 53.0142 75.5774 55.8258L75.5734 55.8238ZM44.2204 32.0456V45.8225H51.6092C53.8085 45.8225 55.4429 45.2662 56.5102 44.1556C57.5776 43.045 58.1103 41.2958 58.1103 38.9099C58.1103 34.333 55.9594 32.0456 51.6577 32.0456H44.2184H44.2204ZM53.4817 71.9565C55.681 71.9565 57.3314 71.3439 58.4331 70.1169C59.5327 68.8918 60.0836 67.0703 60.0836 64.6503C60.0836 59.7159 57.8661 57.2457 53.4332 57.2457H44.2225V71.9544H53.4837L53.4817 71.9565Z"
28
+ fill="#522A10"
29
+ />
30
+ </svg>
31
+ )
32
+ const ForwardRef = forwardRef(SvgButternutFavicon)
33
+ export default ForwardRef
@@ -0,0 +1,294 @@
1
+ import * as React from "react"
2
+ import type { SVGProps } from "react"
3
+ import { Ref, forwardRef } from "react"
4
+ const SvgButternutPrimary = (
5
+ props: SVGProps<SVGSVGElement>,
6
+ ref: Ref<SVGSVGElement>
7
+ ) => (
8
+ <svg
9
+ width={208}
10
+ height={146}
11
+ viewBox="0 0 208 146"
12
+ fill="none"
13
+ xmlns="http://www.w3.org/2000/svg"
14
+ ref={ref}
15
+ {...props}
16
+ >
17
+ <g clipPath="url(#clip0_33_8106)">
18
+ <path d="M0 146H208V0H0V146Z" fill="#522A10" />
19
+ <mask
20
+ id="mask0_33_8106"
21
+ style={{
22
+ maskType: "luminance"
23
+ }}
24
+ maskUnits="userSpaceOnUse"
25
+ x={0}
26
+ y={0}
27
+ width={208}
28
+ height={146}
29
+ >
30
+ <path d="M0 0H208V146H0V0Z" fill="white" />
31
+ </mask>
32
+ <g mask="url(#mask0_33_8106)">
33
+ <path
34
+ d="M9.042 5.07333H198.958C200.838 5.07333 202.363 6.59795 202.363 8.47887V137.521C202.363 139.402 200.838 140.927 198.958 140.927H9.042C7.16114 140.927 5.6366 139.402 5.6366 137.521V8.47887C5.6366 6.59795 7.16114 5.07333 9.042 5.07333Z"
35
+ fill="#FFD54D"
36
+ />
37
+ </g>
38
+ <mask
39
+ id="mask1_33_8106"
40
+ style={{
41
+ maskType: "luminance"
42
+ }}
43
+ maskUnits="userSpaceOnUse"
44
+ x={0}
45
+ y={0}
46
+ width={208}
47
+ height={146}
48
+ >
49
+ <path d="M0 0H208V146H0V0Z" fill="white" />
50
+ </mask>
51
+ <g mask="url(#mask1_33_8106)">
52
+ <path
53
+ d="M41.3725 43.3233C40.1186 41.8959 39.4911 39.8775 39.4911 37.2698V22.3802H47.1018V35.6397C47.1018 36.669 47.3029 37.4438 47.7031 37.9653C48.1034 38.4872 48.7272 38.7479 49.5725 38.7479C50.5349 38.7479 51.2784 38.4219 51.8034 37.7693C52.2841 37.1606 52.525 36.2264 52.525 34.9657V22.3802H60.1357V44.8118H54.5161C54.4863 44.1603 54.3922 43.6384 54.2318 43.2465C54.0573 42.7831 53.7862 42.5516 53.4225 42.5516C53.2627 42.5516 53.1237 42.5876 53.0072 42.6597C52.8912 42.7329 52.7376 42.8703 52.5479 43.073C51.7898 43.885 50.955 44.4858 50.0438 44.8772C49.1326 45.2674 48.0501 45.4634 46.7967 45.4634C44.4341 45.4634 42.6264 44.7507 41.3725 43.3223V43.3233Z"
54
+ fill="#522A10"
55
+ />
56
+ </g>
57
+ <mask
58
+ id="mask2_33_8106"
59
+ style={{
60
+ maskType: "luminance"
61
+ }}
62
+ maskUnits="userSpaceOnUse"
63
+ x={0}
64
+ y={0}
65
+ width={208}
66
+ height={146}
67
+ >
68
+ <path d="M0 0H208V146H0V0Z" fill="white" />
69
+ </mask>
70
+ <g mask="url(#mask2_33_8106)">
71
+ <path
72
+ d="M67.3114 43.2491C65.9776 42.0249 65.3104 40.0572 65.3104 37.3481V28.4362H61.9207V22.3498H64.0419C64.7853 22.3498 65.3757 22.2009 65.8135 21.9047C66.2508 21.6079 66.5857 21.1256 66.8198 20.459C67.1986 19.2855 67.4828 17.9516 67.6724 16.4594H72.768V22.3498H77.2074V28.4362H72.768V36.4134C72.768 37.3847 72.976 38.0796 73.3913 38.5002C73.8072 38.9203 74.4733 39.1303 75.3929 39.1303C76.0339 39.1303 76.7048 39.0509 77.4043 38.891V44.5641C76.9378 44.7235 76.3511 44.8499 75.6442 44.944C74.9368 45.0385 74.2476 45.0856 73.5778 45.0856C70.7346 45.0856 68.6463 44.4743 67.3114 43.2491Z"
73
+ fill="#522A10"
74
+ />
75
+ </g>
76
+ <mask
77
+ id="mask3_33_8106"
78
+ style={{
79
+ maskType: "luminance"
80
+ }}
81
+ maskUnits="userSpaceOnUse"
82
+ x={0}
83
+ y={0}
84
+ width={208}
85
+ height={146}
86
+ >
87
+ <path d="M0 0H208V146H0V0Z" fill="white" />
88
+ </mask>
89
+ <g mask="url(#mask3_33_8106)">
90
+ <path
91
+ d="M26.7827 38.5247C27.7591 38.5247 28.4916 38.253 28.9812 37.7091C29.4692 37.1663 29.7137 36.3585 29.7137 35.2858C29.7137 33.0982 28.7293 32.0031 26.7612 32.0031H22.6719V38.5237H26.7837L26.7827 38.5247ZM22.6709 20.8314V26.9392H25.9514C26.9279 26.9392 27.6536 26.6926 28.1275 26.1999C28.6013 25.7077 28.8375 24.9324 28.8375 23.8743C28.8375 21.8455 27.8824 20.8314 25.9728 20.8314H22.6698H22.6709ZM36.5908 31.373C37.4294 32.6191 37.8484 34.1265 37.8484 35.894C37.8484 38.7488 37.0172 40.9474 35.3552 42.4909C33.6938 44.0348 31.2878 44.806 28.1379 44.806H14.4912V14.5496H27.4822C29.4645 14.5496 31.1489 14.8788 32.5344 15.5387C33.9195 16.198 34.9623 17.1218 35.6619 18.3099C36.3615 19.4986 36.7115 20.8894 36.7115 22.484C36.7115 23.9041 36.3876 25.1466 35.7387 26.2114C35.0903 27.2762 34.1316 28.1064 32.8636 28.7C34.5109 29.236 35.7533 30.1274 36.5924 31.3735L36.5908 31.373Z"
92
+ fill="#522A10"
93
+ />
94
+ </g>
95
+ <mask
96
+ id="mask4_33_8106"
97
+ style={{
98
+ maskType: "luminance"
99
+ }}
100
+ maskUnits="userSpaceOnUse"
101
+ x={0}
102
+ y={0}
103
+ width={208}
104
+ height={146}
105
+ >
106
+ <path d="M0 0H208V146H0V0Z" fill="white" />
107
+ </mask>
108
+ <g mask="url(#mask4_33_8106)">
109
+ <path
110
+ d="M84.3347 43.2491C83.0009 42.0249 82.3337 40.0572 82.3337 37.3481V28.4362H78.944V22.3498H81.0652C81.8086 22.3498 82.399 22.2009 82.8368 21.9047C83.2741 21.6079 83.609 21.1256 83.8431 20.459C84.2219 19.2855 84.5056 17.9516 84.6958 16.4594H89.7913V22.3498H94.2307V28.4362H89.7913V36.4134C89.7913 37.3847 89.9987 38.0796 90.4146 38.5002C90.83 38.9203 91.4966 39.1303 92.4157 39.1303C93.0572 39.1303 93.7281 39.0509 94.4277 38.891V44.5641C93.9611 44.7235 93.3744 44.8499 92.6675 44.944C91.9601 45.0385 91.2709 45.0856 90.6006 45.0856C87.7574 45.0856 85.6696 44.4743 84.3347 43.2491Z"
111
+ fill="#522A10"
112
+ />
113
+ </g>
114
+ <mask
115
+ id="mask5_33_8106"
116
+ style={{
117
+ maskType: "luminance"
118
+ }}
119
+ maskUnits="userSpaceOnUse"
120
+ x={0}
121
+ y={0}
122
+ width={208}
123
+ height={146}
124
+ >
125
+ <path d="M0 0H208V146H0V0Z" fill="white" />
126
+ </mask>
127
+ <g mask="url(#mask5_33_8106)">
128
+ <path
129
+ d="M103.742 28.3715C103.152 29.067 102.835 30.0748 102.791 31.3931H109.221C109.235 30.0309 108.976 29.0137 108.444 28.3397C107.912 27.6657 107.157 27.3292 106.18 27.3292C105.145 27.3292 104.332 27.6772 103.742 28.3726V28.3715ZM102.791 35.5661V35.9141C102.791 37.1748 103.071 38.1205 103.632 38.7506C104.194 39.3813 104.991 39.6963 106.027 39.6963C106.902 39.6963 107.576 39.4967 108.05 39.0991C108.524 38.701 108.818 38.0954 108.936 37.2835H116.044C115.665 39.8343 114.611 41.8301 112.884 43.2717C111.156 44.7142 108.863 45.4342 106.005 45.4342C103.834 45.4342 101.934 44.9671 100.308 44.0324C98.6826 43.0971 97.4281 41.7429 96.5468 39.968C95.6643 38.1926 95.2239 36.0666 95.2239 33.588C95.2239 31.1093 95.668 29.0017 96.5577 27.2195C97.447 25.4368 98.7014 24.0715 100.319 23.1222C101.938 22.1733 103.832 21.6984 106.005 21.6984C108.179 21.6984 109.938 22.1331 111.506 23.0031C113.073 23.873 114.284 25.1369 115.136 26.7957C115.989 28.4551 116.416 30.4442 116.416 32.7625C116.416 34.0964 116.342 35.03 116.197 35.5661H102.791Z"
130
+ fill="#522A10"
131
+ />
132
+ </g>
133
+ <mask
134
+ id="mask6_33_8106"
135
+ style={{
136
+ maskType: "luminance"
137
+ }}
138
+ maskUnits="userSpaceOnUse"
139
+ x={0}
140
+ y={0}
141
+ width={208}
142
+ height={146}
143
+ >
144
+ <path d="M0 0H208V146H0V0Z" fill="white" />
145
+ </mask>
146
+ <g mask="url(#mask6_33_8106)">
147
+ <path
148
+ d="M118.136 44.7753V22.3436H123.363C123.436 23.2997 123.538 23.9952 123.67 24.4309C123.8 24.909 123.997 25.1483 124.26 25.1483C124.391 25.1483 124.49 25.1154 124.555 25.0506C124.622 24.9853 124.698 24.851 124.785 24.6477C125.149 23.7783 125.74 23.1048 126.557 22.6263C127.373 22.1477 128.372 21.9084 129.553 21.9084C130.224 21.9084 130.807 21.9664 131.303 22.0818V28.9284C130.69 28.8412 130.107 28.7983 129.553 28.7983C128.882 28.7983 128.306 28.8715 127.826 29.0157C127.344 29.1609 126.95 29.3997 126.645 29.7336C126.046 30.4002 125.748 31.393 125.748 32.7117V44.7753H118.137H118.136Z"
149
+ fill="#522A10"
150
+ />
151
+ </g>
152
+ <mask
153
+ id="mask7_33_8106"
154
+ style={{
155
+ maskType: "luminance"
156
+ }}
157
+ maskUnits="userSpaceOnUse"
158
+ x={0}
159
+ y={0}
160
+ width={208}
161
+ height={146}
162
+ >
163
+ <path d="M0 0H208V146H0V0Z" fill="white" />
164
+ </mask>
165
+ <g mask="url(#mask7_33_8106)">
166
+ <path
167
+ d="M133.111 44.7827V22.351H138.775C138.803 23.0182 138.899 23.5469 139.059 23.9378C139.161 24.1703 139.274 24.3437 139.398 24.4592C139.521 24.5752 139.671 24.6332 139.846 24.6332C140.02 24.6332 140.166 24.5976 140.283 24.5245C140.399 24.4524 140.552 24.3145 140.742 24.1112C141.486 23.3144 142.324 22.7125 143.257 22.3076C144.19 21.9027 145.284 21.6984 146.538 21.6984C148.885 21.6984 150.69 22.4126 151.951 23.8395C153.212 25.2669 153.843 27.2853 153.843 29.893V44.7827H146.232V31.4145C146.232 29.4149 145.423 28.4149 143.804 28.4149C142.886 28.4149 142.157 28.7336 141.617 29.3716C141.019 30.0962 140.721 31.1098 140.721 32.4145V44.7827H133.11H133.111Z"
168
+ fill="#522A10"
169
+ />
170
+ </g>
171
+ <mask
172
+ id="mask8_33_8106"
173
+ style={{
174
+ maskType: "luminance"
175
+ }}
176
+ maskUnits="userSpaceOnUse"
177
+ x={0}
178
+ y={0}
179
+ width={208}
180
+ height={146}
181
+ >
182
+ <path d="M0 0H208V146H0V0Z" fill="white" />
183
+ </mask>
184
+ <g mask="url(#mask8_33_8106)">
185
+ <path
186
+ d="M157.591 43.292C156.337 41.8651 155.71 39.8468 155.71 37.2385V22.3494H163.321V35.6084C163.321 36.6377 163.522 37.4125 163.922 37.934C164.322 38.4559 164.946 38.7166 165.791 38.7166C166.754 38.7166 167.497 38.3906 168.022 37.738C168.503 37.1293 168.744 36.1952 168.744 34.9344V22.3494H176.355V44.7806H170.734C170.705 44.129 170.611 43.6071 170.451 43.2157C170.276 42.7518 170.006 42.5203 169.642 42.5203C169.482 42.5203 169.343 42.5564 169.226 42.6285C169.11 42.7016 168.956 42.839 168.767 43.0417C168.009 43.8537 167.174 44.4551 166.263 44.8459C165.352 45.2367 164.269 45.4326 163.016 45.4326C160.653 45.4326 158.846 44.7194 157.591 43.291V43.292Z"
187
+ fill="#522A10"
188
+ />
189
+ </g>
190
+ <mask
191
+ id="mask9_33_8106"
192
+ style={{
193
+ maskType: "luminance"
194
+ }}
195
+ maskUnits="userSpaceOnUse"
196
+ x={0}
197
+ y={0}
198
+ width={208}
199
+ height={146}
200
+ >
201
+ <path d="M0 0H208V146H0V0Z" fill="white" />
202
+ </mask>
203
+ <g mask="url(#mask9_33_8106)">
204
+ <path
205
+ d="M183.528 43.2491C182.194 42.0249 181.527 40.0572 181.527 37.3481V28.4362H178.137V22.3498H180.258C181.002 22.3498 181.592 22.2009 182.03 21.9047C182.467 21.6079 182.802 21.1256 183.036 20.459C183.415 19.2855 183.699 17.9516 183.889 16.4594H188.984V22.3498H193.424V28.4362H188.984V36.4134C188.984 37.3847 189.192 38.0796 189.608 38.5002C190.024 38.9203 190.69 39.1303 191.609 39.1303C192.25 39.1303 192.921 39.0509 193.621 38.891V44.5641C193.154 44.7235 192.567 44.8499 191.861 44.944C191.153 45.0385 190.464 45.0856 189.794 45.0856C186.951 45.0856 184.863 44.4743 183.528 43.2491Z"
206
+ fill="#522A10"
207
+ />
208
+ </g>
209
+ <mask
210
+ id="mask10_33_8106"
211
+ style={{
212
+ maskType: "luminance"
213
+ }}
214
+ maskUnits="userSpaceOnUse"
215
+ x={0}
216
+ y={0}
217
+ width={208}
218
+ height={146}
219
+ >
220
+ <path d="M0 0H208V146H0V0Z" fill="white" />
221
+ </mask>
222
+ <g mask="url(#mask10_33_8106)">
223
+ <path
224
+ d="M26.7827 71.3589C27.7591 71.3589 28.4916 71.0872 28.9812 70.5433C29.4692 70.0004 29.7137 69.1927 29.7137 68.12C29.7137 65.9324 28.7293 64.8373 26.7612 64.8373H22.6719V71.3579H26.7837L26.7827 71.3589ZM22.6709 53.6656V59.7734H25.9514C26.9279 59.7734 27.6536 59.5268 28.1275 59.0341C28.6013 58.5419 28.8375 57.7666 28.8375 56.7085C28.8375 54.6797 27.8824 53.6656 25.9728 53.6656H22.6698H22.6709ZM36.5908 64.2077C37.4294 65.4543 37.8484 66.9617 37.8484 68.7287C37.8484 71.5841 37.0172 73.7822 35.3557 75.3261C33.6938 76.87 31.2878 77.6407 28.1379 77.6407H14.4912V47.3843H27.4822C29.4645 47.3843 31.1489 47.714 32.5344 48.3734C33.9195 49.0333 34.9623 49.9565 35.6619 51.1452C36.3615 52.3338 36.712 53.7241 36.712 55.3187C36.712 56.7388 36.3876 57.9818 35.7387 59.0466C35.0903 60.1114 34.1316 60.9411 32.8636 61.5352C34.5109 62.0713 35.7533 62.9621 36.5924 64.2087L36.5908 64.2077Z"
225
+ fill="#522A10"
226
+ />
227
+ </g>
228
+ <mask
229
+ id="mask11_33_8106"
230
+ style={{
231
+ maskType: "luminance"
232
+ }}
233
+ maskUnits="userSpaceOnUse"
234
+ x={0}
235
+ y={0}
236
+ width={208}
237
+ height={146}
238
+ >
239
+ <path d="M0 0H208V146H0V0Z" fill="white" />
240
+ </mask>
241
+ <g mask="url(#mask11_33_8106)">
242
+ <path
243
+ d="M54.0387 66.422C54.0387 62.7129 52.8653 60.8576 50.5173 60.8576C49.3794 60.8576 48.5126 61.3027 47.9149 62.1941C47.3167 63.0849 47.0184 64.4945 47.0184 66.422C47.0184 68.3494 47.3167 69.7591 47.9149 70.6499C48.5126 71.5412 49.3804 71.9864 50.5173 71.9864C52.8642 71.9864 54.0387 70.1321 54.0387 66.422ZM44.5362 76.8011C42.8518 75.8083 41.5618 74.418 40.6653 72.6275C39.7687 70.838 39.3204 68.7695 39.3204 66.422C39.3204 64.0739 39.7687 62.006 40.6653 60.2165C41.5618 58.427 42.8518 57.0361 44.5362 56.0429C46.2201 55.0502 48.2133 54.5538 50.5173 54.5538C52.8214 54.5538 54.8146 55.0507 56.4985 56.0429C58.1824 57.0351 59.4723 58.427 60.3694 60.2165C61.2659 62.006 61.7137 64.0739 61.7137 66.422C61.7137 68.7695 61.2659 70.838 60.3694 72.6275C59.4723 74.417 58.1824 75.8083 56.4985 76.8011C54.8146 77.7938 52.8203 78.2896 50.5173 78.2896C48.2143 78.2896 46.2201 77.7933 44.5362 76.8011Z"
244
+ fill="#522A10"
245
+ />
246
+ </g>
247
+ <mask
248
+ id="mask12_33_8106"
249
+ style={{
250
+ maskType: "luminance"
251
+ }}
252
+ maskUnits="userSpaceOnUse"
253
+ x={0}
254
+ y={0}
255
+ width={208}
256
+ height={146}
257
+ >
258
+ <path d="M0 0H208V146H0V0Z" fill="white" />
259
+ </mask>
260
+ <g mask="url(#mask12_33_8106)">
261
+ <path
262
+ d="M76.5422 66.0552L83.0594 77.6412H74.5077L71.293 71.0334L68.0778 77.6412H60.2262L66.6123 66.3598L60.1604 55.2096H68.6468L71.7737 61.5781L74.9011 55.2096H82.7088L76.5412 66.0563L76.5422 66.0552Z"
263
+ fill="#522A10"
264
+ />
265
+ </g>
266
+ <mask
267
+ id="mask13_33_8106"
268
+ style={{
269
+ maskType: "luminance"
270
+ }}
271
+ maskUnits="userSpaceOnUse"
272
+ x={0}
273
+ y={0}
274
+ width={208}
275
+ height={146}
276
+ >
277
+ <path d="M0 0H208V146H0V0Z" fill="white" />
278
+ </mask>
279
+ <g mask="url(#mask13_33_8106)">
280
+ <path
281
+ d="M93.0697 69.1854H84.5625V77.6407H93.0697V69.1854Z"
282
+ fill="#522A10"
283
+ />
284
+ </g>
285
+ </g>
286
+ <defs>
287
+ <clipPath id="clip0_33_8106">
288
+ <rect width={208} height={146} fill="white" />
289
+ </clipPath>
290
+ </defs>
291
+ </svg>
292
+ )
293
+ const ForwardRef = forwardRef(SvgButternutPrimary)
294
+ export default ForwardRef