@butternutbox/pawprint-native 0.0.1 → 0.2.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.
- package/.turbo/turbo-build.log +15 -15
- package/CHANGELOG.md +30 -0
- package/COMPONENT_GUIDELINES.md +111 -4
- package/dist/index.cjs +12413 -1459
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1111 -13
- package/dist/index.d.ts +1111 -13
- package/dist/index.js +12365 -1457
- package/dist/index.js.map +1 -1
- package/package.json +29 -11
- package/src/__mocks__/asset-stub.ts +1 -0
- package/src/__mocks__/emotion-native.tsx +18 -0
- package/src/__mocks__/react-native-gesture-handler.tsx +41 -0
- package/src/__mocks__/react-native-reanimated.tsx +79 -0
- package/src/__mocks__/react-native-safe-area-context.tsx +6 -0
- package/src/__mocks__/react-native-svg.tsx +27 -0
- package/src/__mocks__/react-native-worklets.tsx +11 -0
- package/src/__mocks__/react-native.tsx +338 -0
- package/src/__mocks__/rn-primitives/avatar.tsx +24 -0
- package/src/__mocks__/rn-primitives/checkbox.tsx +19 -0
- package/src/__mocks__/rn-primitives/select.tsx +116 -0
- package/src/__mocks__/rn-primitives/slider.tsx +40 -0
- package/src/__mocks__/rn-primitives/slot.tsx +30 -0
- package/src/__mocks__/rn-primitives/switch.tsx +24 -0
- package/src/__mocks__/rn-primitives/toggle.tsx +16 -0
- package/src/components/atoms/Avatar/Avatar.stories.tsx +57 -49
- package/src/components/atoms/Avatar/Avatar.test.tsx +269 -0
- package/src/components/atoms/Avatar/Avatar.tsx +68 -22
- package/src/components/atoms/Avatar/index.ts +1 -6
- package/src/components/atoms/Badge/Badge.stories.tsx +5 -29
- package/src/components/atoms/Badge/Badge.test.tsx +90 -0
- package/src/components/atoms/Button/Button.test.tsx +123 -0
- package/src/components/atoms/Button/Button.tsx +1 -1
- package/src/components/atoms/CarouselControls/CarouselControls.stories.tsx +217 -0
- package/src/components/atoms/CarouselControls/CarouselControls.tsx +127 -0
- package/src/components/atoms/CarouselControls/index.ts +2 -0
- package/src/components/atoms/Hint/Hint.test.tsx +36 -0
- package/src/components/atoms/Icon/Icon.test.tsx +98 -0
- package/src/components/atoms/Icon/Icon.tsx +5 -1
- package/src/components/atoms/IconButton/IconButton.test.tsx +101 -0
- package/src/components/atoms/Illustration/Illustration.stories.tsx +2 -2
- package/src/components/atoms/Illustration/Illustration.test.tsx +55 -0
- package/src/components/atoms/Illustration/Illustration.tsx +3 -3
- package/src/components/atoms/Input/Input.stories.tsx +129 -86
- package/src/components/atoms/Input/Input.test.tsx +306 -0
- package/src/components/atoms/Input/Input.tsx +9 -1
- package/src/components/atoms/Input/InputField.tsx +226 -74
- package/src/components/atoms/Link/Link.test.tsx +89 -0
- package/src/components/atoms/Link/Link.tsx +7 -6
- package/src/components/atoms/Logo/Logo.registry.ts +30 -5
- package/src/components/atoms/Logo/Logo.stories.tsx +108 -0
- package/src/components/atoms/Logo/Logo.test.tsx +56 -0
- package/src/components/atoms/Logo/assets/BCorp.tsx +113 -0
- package/src/components/atoms/Logo/assets/ButternutFavicon.tsx +33 -0
- package/src/components/atoms/Logo/assets/ButternutPrimary.tsx +294 -0
- package/src/components/atoms/Logo/assets/ButternutTabbedBottom.tsx +294 -0
- package/src/components/atoms/Logo/assets/ButternutTabbedTop.tsx +294 -0
- package/src/components/atoms/Logo/assets/ButternutWordmark.tsx +274 -0
- package/src/components/atoms/Logo/assets/PsiBufetFavicon.tsx +45 -0
- package/src/components/atoms/Logo/assets/PsiBufetPrimary.tsx +218 -0
- package/src/components/atoms/Logo/assets/PsiBufetTabbedBottom.tsx +218 -0
- package/src/components/atoms/Logo/assets/PsiBufetTabbedTop.tsx +218 -0
- package/src/components/atoms/Logo/assets/PsiBufetWordmark.tsx +195 -0
- package/src/components/atoms/Logo/assets/index.ts +11 -0
- package/src/components/atoms/NumberInput/NumberInput.stories.tsx +183 -0
- package/src/components/atoms/NumberInput/NumberInput.test.tsx +261 -0
- package/src/components/atoms/NumberInput/NumberInput.tsx +129 -0
- package/src/components/atoms/NumberInput/NumberInputField.tsx +77 -0
- package/src/components/atoms/NumberInput/index.ts +4 -0
- package/src/components/atoms/Spinner/Spinner.test.tsx +46 -0
- package/src/components/atoms/Spinner/Spinner.tsx +14 -5
- package/src/components/atoms/Switch/Switch.test.tsx +92 -0
- package/src/components/atoms/Switch/Switch.tsx +28 -17
- package/src/components/atoms/Tag/Tag.test.tsx +70 -0
- package/src/components/atoms/TextArea/TextArea.stories.tsx +303 -0
- package/src/components/atoms/TextArea/TextArea.test.tsx +416 -0
- package/src/components/atoms/TextArea/TextArea.tsx +171 -0
- package/src/components/atoms/TextArea/TextAreaField.tsx +304 -0
- package/src/components/atoms/TextArea/TextAreaLabel.tsx +103 -0
- package/src/components/atoms/TextArea/index.ts +6 -0
- package/src/components/atoms/Typography/Typography.test.tsx +94 -0
- package/src/components/atoms/index.ts +3 -0
- package/src/components/molecules/Accordion/Accordion.stories.tsx +177 -0
- package/src/components/molecules/Accordion/Accordion.test.tsx +185 -0
- package/src/components/molecules/Accordion/Accordion.tsx +284 -0
- package/src/components/molecules/Accordion/index.ts +6 -0
- package/src/components/molecules/Animated/Animated.stories.tsx +254 -0
- package/src/components/molecules/Animated/Animated.tsx +283 -0
- package/src/components/molecules/Animated/index.ts +10 -0
- package/src/components/molecules/ButtonDock/ButtonDock.stories.tsx +44 -25
- package/src/components/molecules/ButtonDock/ButtonDock.test.tsx +83 -0
- package/src/components/molecules/ButtonDock/ButtonDock.tsx +16 -13
- package/src/components/molecules/ButtonGroup/ButtonGroup.stories.tsx +48 -29
- package/src/components/molecules/ButtonGroup/ButtonGroup.test.tsx +73 -0
- package/src/components/molecules/ButtonGroup/ButtonGroup.tsx +25 -3
- package/src/components/molecules/Checkbox/Checkbox.stories.tsx +72 -0
- package/src/components/molecules/Checkbox/Checkbox.test.tsx +117 -0
- package/src/components/molecules/Checkbox/Checkbox.tsx +101 -95
- package/src/components/molecules/CopyField/CopyField.stories.tsx +313 -0
- package/src/components/molecules/CopyField/CopyField.test.tsx +431 -0
- package/src/components/molecules/CopyField/CopyField.tsx +156 -0
- package/src/components/molecules/CopyField/CopyFieldInput.tsx +127 -0
- package/src/components/molecules/CopyField/hooks/index.ts +1 -0
- package/src/components/molecules/CopyField/hooks/useCopyField.ts +25 -0
- package/src/components/molecules/CopyField/index.ts +4 -0
- package/src/components/molecules/DatePicker/DatePicker.stories.tsx +298 -0
- package/src/components/molecules/DatePicker/DatePicker.test.tsx +201 -0
- package/src/components/molecules/DatePicker/DatePicker.tsx +590 -0
- package/src/components/molecules/DatePicker/index.ts +2 -0
- package/src/components/molecules/Drawer/Drawer.stories.tsx +285 -0
- package/src/components/molecules/Drawer/Drawer.test.tsx +180 -0
- package/src/components/molecules/Drawer/Drawer.tsx +187 -0
- package/src/components/molecules/Drawer/DrawerBody.tsx +80 -0
- package/src/components/molecules/Drawer/DrawerClose.tsx +76 -0
- package/src/components/molecules/Drawer/DrawerContent.tsx +339 -0
- package/src/components/molecules/Drawer/DrawerContext.ts +19 -0
- package/src/components/molecules/Drawer/DrawerDescription.tsx +31 -0
- package/src/components/molecules/Drawer/DrawerDragContext.ts +11 -0
- package/src/components/molecules/Drawer/DrawerFooter.tsx +49 -0
- package/src/components/molecules/Drawer/DrawerFooterContext.ts +6 -0
- package/src/components/molecules/Drawer/DrawerGrabber.tsx +62 -0
- package/src/components/molecules/Drawer/DrawerHeader.tsx +244 -0
- package/src/components/molecules/Drawer/DrawerHeaderContext.ts +13 -0
- package/src/components/molecules/Drawer/DrawerOverlay.tsx +53 -0
- package/src/components/molecules/Drawer/DrawerTitle.tsx +32 -0
- package/src/components/molecules/Drawer/index.ts +12 -0
- package/src/components/molecules/FilterTab/FilterTab.stories.tsx +210 -0
- package/src/components/molecules/FilterTab/FilterTab.tsx +310 -0
- package/src/components/molecules/FilterTab/index.ts +2 -0
- package/src/components/molecules/MessageCard/MessageCard.stories.tsx +169 -0
- package/src/components/molecules/MessageCard/MessageCard.tsx +362 -0
- package/src/components/molecules/MessageCard/index.ts +10 -0
- package/src/components/molecules/Notification/Notification.stories.tsx +219 -0
- package/src/components/molecules/Notification/Notification.tsx +426 -0
- package/src/components/molecules/Notification/index.ts +2 -0
- package/src/components/molecules/NumberField/NumberField.stories.tsx +231 -0
- package/src/components/molecules/NumberField/NumberField.tsx +186 -0
- package/src/components/molecules/NumberField/NumberFieldInput.tsx +287 -0
- package/src/components/molecules/NumberField/index.ts +2 -0
- package/src/components/molecules/PasswordField/PasswordField.stories.tsx +362 -0
- package/src/components/molecules/PasswordField/PasswordField.test.tsx +369 -0
- package/src/components/molecules/PasswordField/PasswordField.tsx +194 -0
- package/src/components/molecules/PasswordField/PasswordFieldError.tsx +53 -0
- package/src/components/molecules/PasswordField/PasswordFieldInput.tsx +73 -0
- package/src/components/molecules/PasswordField/PasswordFieldRequirements.tsx +95 -0
- package/src/components/molecules/PasswordField/hooks/index.ts +2 -0
- package/src/components/molecules/PasswordField/hooks/usePasswordField.ts +113 -0
- package/src/components/molecules/PasswordField/index.ts +10 -0
- package/src/components/molecules/PictureSelector/PictureSelector.stories.tsx +204 -0
- package/src/components/molecules/PictureSelector/PictureSelector.tsx +335 -0
- package/src/components/molecules/PictureSelector/index.ts +5 -0
- package/src/components/molecules/Progress/Progress.stories.tsx +145 -0
- package/src/components/molecules/Progress/Progress.tsx +184 -0
- package/src/components/molecules/Progress/index.ts +2 -0
- package/src/components/molecules/Radio/Radio.test.tsx +104 -0
- package/src/components/molecules/Radio/Radio.tsx +1 -2
- package/src/components/molecules/SearchField/SearchField.stories.tsx +242 -0
- package/src/components/molecules/SearchField/SearchField.test.tsx +318 -0
- package/src/components/molecules/SearchField/SearchField.tsx +143 -0
- package/src/components/molecules/SearchField/SearchFieldInput.tsx +63 -0
- package/src/components/molecules/SearchField/hooks/index.ts +1 -0
- package/src/components/molecules/SearchField/hooks/useSearchField.ts +56 -0
- package/src/components/molecules/SearchField/index.ts +4 -0
- package/src/components/molecules/SegmentedControl/SegmentedControl.stories.tsx +31 -8
- package/src/components/molecules/SegmentedControl/SegmentedControl.test.tsx +141 -0
- package/src/components/molecules/SegmentedControl/SegmentedControl.tsx +237 -23
- package/src/components/molecules/SelectField/SelectField.stories.tsx +320 -0
- package/src/components/molecules/SelectField/SelectField.test.tsx +254 -0
- package/src/components/molecules/SelectField/SelectField.tsx +236 -0
- package/src/components/molecules/SelectField/SelectFieldContent.tsx +85 -0
- package/src/components/molecules/SelectField/SelectFieldItem.tsx +133 -0
- package/src/components/molecules/SelectField/SelectFieldTrigger.tsx +170 -0
- package/src/components/molecules/SelectField/SelectFieldValue.tsx +31 -0
- package/src/components/molecules/SelectField/hooks/index.ts +2 -0
- package/src/components/molecules/SelectField/hooks/useSelectField.ts +84 -0
- package/src/components/molecules/SelectField/index.ts +10 -0
- package/src/components/molecules/Slider/Slider.test.tsx +102 -0
- package/src/components/molecules/Slider/Slider.tsx +293 -180
- package/src/components/molecules/Tooltip/Tooltip.stories.tsx +168 -0
- package/src/components/molecules/Tooltip/Tooltip.tsx +326 -0
- package/src/components/molecules/Tooltip/index.ts +2 -0
- package/src/components/molecules/index.ts +15 -0
- package/src/test-utils.tsx +20 -0
- package/tsconfig.json +1 -1
- package/tsup.config.ts +16 -2
- package/vitest.config.ts +114 -0
- package/vitest.setup.ts +16 -0
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import type { SVGProps } from "react"
|
|
3
|
+
import { Ref, forwardRef } from "react"
|
|
4
|
+
const SvgButternutWordmark = (
|
|
5
|
+
props: SVGProps<SVGSVGElement>,
|
|
6
|
+
ref: Ref<SVGSVGElement>
|
|
7
|
+
) => (
|
|
8
|
+
<svg
|
|
9
|
+
width={208}
|
|
10
|
+
height={74}
|
|
11
|
+
viewBox="0 0 208 74"
|
|
12
|
+
fill="none"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
ref={ref}
|
|
15
|
+
{...props}
|
|
16
|
+
>
|
|
17
|
+
<g clipPath="url(#clip0_33_8014)">
|
|
18
|
+
<mask
|
|
19
|
+
id="mask0_33_8014"
|
|
20
|
+
style={{
|
|
21
|
+
maskType: "luminance"
|
|
22
|
+
}}
|
|
23
|
+
maskUnits="userSpaceOnUse"
|
|
24
|
+
x={0}
|
|
25
|
+
y={0}
|
|
26
|
+
width={208}
|
|
27
|
+
height={74}
|
|
28
|
+
>
|
|
29
|
+
<path d="M0 7.62939e-06H208V74H0V7.62939e-06Z" fill="white" />
|
|
30
|
+
</mask>
|
|
31
|
+
<g mask="url(#mask0_33_8014)">
|
|
32
|
+
<path
|
|
33
|
+
d="M31.2138 33.4C29.7574 31.7431 29.0292 29.3999 29.0292 26.3724V9.08548H37.8667V24.4796C37.8667 25.6746 38.0996 26.574 38.5645 27.1794C39.0295 27.7853 39.7533 28.088 40.7356 28.088C41.8527 28.088 42.7162 27.7098 43.3255 26.9523C43.8843 26.2453 44.1639 25.1606 44.1639 23.6971V9.08548H53.0014V35.1282H46.475C46.4409 34.3717 46.3316 33.7663 46.1454 33.311C45.9427 32.7725 45.6285 32.5039 45.2059 32.5039C45.0201 32.5039 44.8589 32.5463 44.7236 32.63C44.5884 32.7147 44.4103 32.874 44.1899 33.1098C43.3101 34.0526 42.3403 34.7499 41.2824 35.2037C40.2245 35.6576 38.9674 35.8852 37.5119 35.8852C34.7691 35.8852 32.6701 35.057 31.2138 33.3991V33.4Z"
|
|
34
|
+
fill="#522A10"
|
|
35
|
+
/>
|
|
36
|
+
</g>
|
|
37
|
+
<mask
|
|
38
|
+
id="mask1_33_8014"
|
|
39
|
+
style={{
|
|
40
|
+
maskType: "luminance"
|
|
41
|
+
}}
|
|
42
|
+
maskUnits="userSpaceOnUse"
|
|
43
|
+
x={0}
|
|
44
|
+
y={0}
|
|
45
|
+
width={208}
|
|
46
|
+
height={74}
|
|
47
|
+
>
|
|
48
|
+
<path d="M0 7.62939e-06H208V74H0V7.62939e-06Z" fill="white" />
|
|
49
|
+
</mask>
|
|
50
|
+
<g mask="url(#mask1_33_8014)">
|
|
51
|
+
<path
|
|
52
|
+
d="M61.3316 33.31C59.7828 31.8884 59.0079 29.6044 59.0079 26.459V16.1117H55.0719V9.04554H57.5352C58.3986 9.04554 59.0839 8.87325 59.5927 8.52868C60.1004 8.18458 60.4893 7.62441 60.7608 6.85008C61.2007 5.48767 61.5304 3.9395 61.7508 2.20701H67.6673V9.04554H72.8224V16.1117H67.6673V25.3733C67.6673 26.5013 67.9089 27.3084 68.3917 27.7964C68.8739 28.2844 69.6478 28.5284 70.7153 28.5284C71.4599 28.5284 72.2391 28.436 73.0515 28.2502V34.8366C72.5096 35.0218 71.8281 35.1686 71.0075 35.2779C70.1859 35.3876 69.386 35.4424 68.6078 35.4424C65.3061 35.4424 62.8818 34.7321 61.3316 33.31Z"
|
|
53
|
+
fill="#522A10"
|
|
54
|
+
/>
|
|
55
|
+
</g>
|
|
56
|
+
<mask
|
|
57
|
+
id="mask2_33_8014"
|
|
58
|
+
style={{
|
|
59
|
+
maskType: "luminance"
|
|
60
|
+
}}
|
|
61
|
+
maskUnits="userSpaceOnUse"
|
|
62
|
+
x={0}
|
|
63
|
+
y={0}
|
|
64
|
+
width={208}
|
|
65
|
+
height={74}
|
|
66
|
+
>
|
|
67
|
+
<path d="M0 7.62939e-06H208V74H0V7.62939e-06Z" fill="white" />
|
|
68
|
+
</mask>
|
|
69
|
+
<g mask="url(#mask2_33_8014)">
|
|
70
|
+
<path
|
|
71
|
+
d="M14.2722 27.8353C15.4062 27.8353 16.2566 27.5201 16.8245 26.8887C17.3915 26.2583 17.6754 25.3208 17.6754 24.0749C17.6754 21.5353 16.5324 20.2639 14.2472 20.2639H9.49878V27.8344H14.2732L14.2722 27.8353ZM9.49782 7.29329V14.3845H13.3068C14.4407 14.3845 15.2834 14.0981 15.8335 13.5264C16.3837 12.9547 16.6585 12.0548 16.6585 10.8266C16.6585 8.47091 15.5496 7.29329 13.3318 7.29329H9.49685H9.49782ZM25.661 19.5319C26.6347 20.979 27.1213 22.7293 27.1213 24.7809C27.1213 28.0962 26.1563 30.6482 24.2268 32.4404C22.2973 34.2331 19.5034 35.1282 15.8461 35.1282H0V-1.52588e-05H15.0847C17.3867 -1.52588e-05 19.3422 0.382576 20.9511 1.14824C22.5591 1.91439 23.7701 2.98613 24.5825 4.36635C25.3949 5.74608 25.8016 7.36067 25.8016 9.21203C25.8016 10.8608 25.4247 12.3036 24.672 13.5399C23.9188 14.7762 22.8055 15.7397 21.3328 16.4288C23.2459 17.0516 24.6884 18.0862 25.663 19.5333L25.661 19.5319Z"
|
|
72
|
+
fill="#522A10"
|
|
73
|
+
/>
|
|
74
|
+
</g>
|
|
75
|
+
<mask
|
|
76
|
+
id="mask3_33_8014"
|
|
77
|
+
style={{
|
|
78
|
+
maskType: "luminance"
|
|
79
|
+
}}
|
|
80
|
+
maskUnits="userSpaceOnUse"
|
|
81
|
+
x={0}
|
|
82
|
+
y={0}
|
|
83
|
+
width={208}
|
|
84
|
+
height={74}
|
|
85
|
+
>
|
|
86
|
+
<path d="M0 7.62939e-06H208V74H0V7.62939e-06Z" fill="white" />
|
|
87
|
+
</mask>
|
|
88
|
+
<g mask="url(#mask3_33_8014)">
|
|
89
|
+
<path
|
|
90
|
+
d="M81.0957 33.31C79.5469 31.8884 78.7721 29.6044 78.7721 26.459V16.1117H74.8361V9.04554H77.2993C78.1628 9.04554 78.8481 8.87325 79.3568 8.52868C79.8641 8.18458 80.2535 7.62441 80.5249 6.85008C80.9648 5.48767 81.2945 3.9395 81.5149 2.20701H87.4315V9.04554H92.5861V16.1117H87.4315V25.3733C87.4315 26.5013 87.6721 27.3084 88.1534 27.7964C88.6395 28.2844 89.4144 28.5284 90.4781 28.5284C91.2241 28.5284 92.0037 28.436 92.8171 28.2502V34.8366C92.2733 35.0218 91.5947 35.1686 90.7716 35.2779C89.9486 35.3876 89.1497 35.4424 88.37 35.4424C85.0683 35.4424 82.646 34.7321 81.0957 33.31Z"
|
|
91
|
+
fill="#522A10"
|
|
92
|
+
/>
|
|
93
|
+
</g>
|
|
94
|
+
<mask
|
|
95
|
+
id="mask4_33_8014"
|
|
96
|
+
style={{
|
|
97
|
+
maskType: "luminance"
|
|
98
|
+
}}
|
|
99
|
+
maskUnits="userSpaceOnUse"
|
|
100
|
+
x={0}
|
|
101
|
+
y={0}
|
|
102
|
+
width={208}
|
|
103
|
+
height={74}
|
|
104
|
+
>
|
|
105
|
+
<path d="M0 7.62939e-06H208V74H0V7.62939e-06Z" fill="white" />
|
|
106
|
+
</mask>
|
|
107
|
+
<g mask="url(#mask4_33_8014)">
|
|
108
|
+
<path
|
|
109
|
+
d="M103.632 16.0366C102.948 16.8437 102.583 18.0141 102.53 19.5449H109.994C110.014 17.963 109.71 16.7816 109.094 15.9991C108.478 15.2166 107.598 14.8263 106.467 14.8263C105.263 14.8263 104.32 15.23 103.632 16.0376V16.0366ZM102.53 24.3896V24.7939C102.53 26.2573 102.857 27.3551 103.507 28.087C104.156 28.8185 105.085 29.1848 106.288 29.1848C107.304 29.1848 108.084 28.9533 108.637 28.4913C109.186 28.0288 109.528 27.3262 109.667 26.3834H117.917C117.479 29.345 116.256 31.6622 114.249 33.336C112.242 35.0103 109.581 35.8467 106.264 35.8467C103.742 35.8467 101.533 35.3038 99.6467 34.2186C97.76 33.1334 96.3017 31.5612 95.2813 29.5C94.2562 27.4388 93.7412 24.9705 93.7412 22.0926C93.7412 19.2148 94.261 16.7681 95.291 14.6987C96.3257 12.6294 97.7793 11.0437 99.6611 9.94209C101.538 8.84003 103.738 8.289 106.264 8.289C108.786 8.289 110.827 8.79335 112.651 9.80349C114.47 10.8131 115.876 12.2809 116.867 14.2069C117.854 16.1338 118.35 18.4428 118.35 21.1345C118.35 22.6831 118.263 23.7674 118.095 24.3896H102.53Z"
|
|
110
|
+
fill="#522A10"
|
|
111
|
+
/>
|
|
112
|
+
</g>
|
|
113
|
+
<mask
|
|
114
|
+
id="mask5_33_8014"
|
|
115
|
+
style={{
|
|
116
|
+
maskType: "luminance"
|
|
117
|
+
}}
|
|
118
|
+
maskUnits="userSpaceOnUse"
|
|
119
|
+
x={0}
|
|
120
|
+
y={0}
|
|
121
|
+
width={208}
|
|
122
|
+
height={74}
|
|
123
|
+
>
|
|
124
|
+
<path d="M0 7.62939e-06H208V74H0V7.62939e-06Z" fill="white" />
|
|
125
|
+
</mask>
|
|
126
|
+
<g mask="url(#mask5_33_8014)">
|
|
127
|
+
<path
|
|
128
|
+
d="M120.357 35.0887V9.04555H126.426C126.508 10.1558 126.628 10.9628 126.782 11.4686C126.931 12.0235 127.162 12.3017 127.465 12.3017C127.619 12.3017 127.735 12.2637 127.812 12.1881C127.889 12.1125 127.976 11.9566 128.077 11.7208C128.5 10.7107 129.184 9.9296 130.132 9.37328C131.08 8.8184 132.24 8.54024 133.611 8.54024C134.391 8.54024 135.07 8.60713 135.643 8.74188V16.6907C134.935 16.5891 134.256 16.5395 133.611 16.5395C132.832 16.5395 132.163 16.6242 131.604 16.7917C131.046 16.9601 130.589 17.2373 130.238 17.6252C129.54 18.3991 129.193 19.5517 129.193 21.0825V35.0887H120.357Z"
|
|
129
|
+
fill="#522A10"
|
|
130
|
+
/>
|
|
131
|
+
</g>
|
|
132
|
+
<mask
|
|
133
|
+
id="mask6_33_8014"
|
|
134
|
+
style={{
|
|
135
|
+
maskType: "luminance"
|
|
136
|
+
}}
|
|
137
|
+
maskUnits="userSpaceOnUse"
|
|
138
|
+
x={0}
|
|
139
|
+
y={0}
|
|
140
|
+
width={208}
|
|
141
|
+
height={74}
|
|
142
|
+
>
|
|
143
|
+
<path d="M0 7.62939e-06H208V74H0V7.62939e-06Z" fill="white" />
|
|
144
|
+
</mask>
|
|
145
|
+
<g mask="url(#mask6_33_8014)">
|
|
146
|
+
<path
|
|
147
|
+
d="M137.736 35.0883V9.04506H144.311C144.344 9.81939 144.455 10.4335 144.643 10.8873C144.758 11.1568 144.888 11.3584 145.033 11.4927C145.177 11.6274 145.35 11.6943 145.552 11.6943C145.755 11.6943 145.928 11.6529 146.063 11.5682C146.197 11.4845 146.375 11.3243 146.597 11.0889C147.458 10.1635 148.431 9.46471 149.518 8.99453C150.601 8.52435 151.867 8.28758 153.325 8.28758C156.049 8.28758 158.143 9.11677 159.611 10.7737C161.074 12.4306 161.806 14.7738 161.806 17.8014V35.0883H152.969V19.568C152.969 17.2465 152.031 16.0857 150.149 16.0857C149.085 16.0857 148.238 16.4553 147.612 17.1955C146.914 18.0372 146.568 19.2143 146.568 20.7288V35.0883H137.731H137.736Z"
|
|
148
|
+
fill="#522A10"
|
|
149
|
+
/>
|
|
150
|
+
</g>
|
|
151
|
+
<mask
|
|
152
|
+
id="mask7_33_8014"
|
|
153
|
+
style={{
|
|
154
|
+
maskType: "luminance"
|
|
155
|
+
}}
|
|
156
|
+
maskUnits="userSpaceOnUse"
|
|
157
|
+
x={0}
|
|
158
|
+
y={0}
|
|
159
|
+
width={208}
|
|
160
|
+
height={74}
|
|
161
|
+
>
|
|
162
|
+
<path d="M0 7.62939e-06H208V74H0V7.62939e-06Z" fill="white" />
|
|
163
|
+
</mask>
|
|
164
|
+
<g mask="url(#mask7_33_8014)">
|
|
165
|
+
<path
|
|
166
|
+
d="M166.161 33.3601C164.703 31.7032 163.976 29.3595 163.976 26.332V9.04507H172.813V24.4397C172.813 25.6346 173.044 26.5336 173.511 27.1395C173.977 27.7449 174.699 28.0481 175.681 28.0481C176.798 28.0481 177.659 27.6698 178.271 26.9119C178.829 26.2049 179.108 25.1207 179.108 23.6572V9.04507H187.945V35.0883H181.418C181.385 34.3317 181.279 33.7259 181.091 33.2711C180.889 32.7326 180.576 32.464 180.152 32.464C179.965 32.464 179.806 32.5064 179.671 32.5901C179.532 32.6748 179.353 32.8341 179.137 33.0694C178.256 34.0122 177.284 34.71 176.23 35.1638C175.171 35.6176 173.915 35.8448 172.457 35.8448C169.713 35.8448 167.615 35.017 166.161 33.3591V33.3601Z"
|
|
167
|
+
fill="#522A10"
|
|
168
|
+
/>
|
|
169
|
+
</g>
|
|
170
|
+
<mask
|
|
171
|
+
id="mask8_33_8014"
|
|
172
|
+
style={{
|
|
173
|
+
maskType: "luminance"
|
|
174
|
+
}}
|
|
175
|
+
maskUnits="userSpaceOnUse"
|
|
176
|
+
x={0}
|
|
177
|
+
y={0}
|
|
178
|
+
width={208}
|
|
179
|
+
height={74}
|
|
180
|
+
>
|
|
181
|
+
<path d="M0 7.62939e-06H208V74H0V7.62939e-06Z" fill="white" />
|
|
182
|
+
</mask>
|
|
183
|
+
<g mask="url(#mask8_33_8014)">
|
|
184
|
+
<path
|
|
185
|
+
d="M196.276 33.31C194.731 31.8884 193.956 29.6044 193.956 26.459V16.1117H190.019V9.04554H192.483C193.345 9.04554 194.028 8.87325 194.538 8.52868C195.049 8.18458 195.434 7.62441 195.708 6.85008C196.146 5.48767 196.478 3.9395 196.699 2.20701H202.614V9.04554H207.769V16.1117H202.614V25.3733C202.614 26.5013 202.855 27.3084 203.336 27.7964C203.822 28.2844 204.593 28.5284 205.661 28.5284C206.407 28.5284 207.187 28.436 208 28.2502V34.8366C207.456 35.0218 206.773 35.1686 205.955 35.2779C205.132 35.3876 204.333 35.4424 203.553 35.4424C200.251 35.4424 197.826 34.7321 196.276 33.31Z"
|
|
186
|
+
fill="#522A10"
|
|
187
|
+
/>
|
|
188
|
+
</g>
|
|
189
|
+
<mask
|
|
190
|
+
id="mask9_33_8014"
|
|
191
|
+
style={{
|
|
192
|
+
maskType: "luminance"
|
|
193
|
+
}}
|
|
194
|
+
maskUnits="userSpaceOnUse"
|
|
195
|
+
x={0}
|
|
196
|
+
y={0}
|
|
197
|
+
width={208}
|
|
198
|
+
height={74}
|
|
199
|
+
>
|
|
200
|
+
<path d="M0 7.62939e-06H208V74H0V7.62939e-06Z" fill="white" />
|
|
201
|
+
</mask>
|
|
202
|
+
<g mask="url(#mask9_33_8014)">
|
|
203
|
+
<path
|
|
204
|
+
d="M14.2737 65.9501C15.4076 65.9501 16.2585 65.6349 16.8265 65.003C17.3934 64.3726 17.6774 63.4351 17.6774 62.1896C17.6774 59.6496 16.5338 58.3782 14.2487 58.3782H9.50025V65.9491H14.2747L14.2737 65.9501ZM9.49928 45.408V52.4987H13.3087C14.4422 52.4987 15.2849 52.2124 15.835 51.6412C16.3851 51.0694 16.6599 50.169 16.6599 48.9409C16.6599 46.5852 15.551 45.408 13.3333 45.408H9.49832H9.49928ZM25.6625 57.6476C26.6362 59.0947 27.1232 60.8445 27.1232 62.8966C27.1232 66.2114 26.1578 68.7635 24.2283 70.5561C22.2988 72.3483 19.5049 73.2434 15.8475 73.2434H0.00146484V38.1157H15.0861C17.3881 38.1157 19.3436 38.4978 20.9526 39.264C22.5606 40.0296 23.7715 41.1018 24.5839 42.4816C25.3964 43.8618 25.8031 45.4764 25.8031 47.3273C25.8031 48.976 25.4267 50.4193 24.6735 51.6556C23.9202 52.8919 22.8075 53.8549 21.3343 54.5445C23.2474 55.1668 24.6898 56.2015 25.6649 57.6486L25.6625 57.6476Z"
|
|
205
|
+
fill="#522A10"
|
|
206
|
+
/>
|
|
207
|
+
</g>
|
|
208
|
+
<mask
|
|
209
|
+
id="mask10_33_8014"
|
|
210
|
+
style={{
|
|
211
|
+
maskType: "luminance"
|
|
212
|
+
}}
|
|
213
|
+
maskUnits="userSpaceOnUse"
|
|
214
|
+
x={0}
|
|
215
|
+
y={0}
|
|
216
|
+
width={208}
|
|
217
|
+
height={74}
|
|
218
|
+
>
|
|
219
|
+
<path d="M0 7.62939e-06H208V74H0V7.62939e-06Z" fill="white" />
|
|
220
|
+
</mask>
|
|
221
|
+
<g mask="url(#mask10_33_8014)">
|
|
222
|
+
<path
|
|
223
|
+
d="M45.9316 60.2214C45.9316 55.9152 44.5691 53.7611 41.8431 53.7611C40.5219 53.7611 39.5151 54.278 38.821 55.3127C38.1265 56.3474 37.78 57.9836 37.78 60.2214C37.78 62.4592 38.1265 64.0954 38.821 65.1301C39.5151 66.1648 40.5229 66.6817 41.8431 66.6817C44.5681 66.6817 45.9316 64.5286 45.9316 60.2214ZM34.8975 72.2718C32.942 71.1193 31.4443 69.5047 30.4032 67.4262C29.3617 65.3486 28.8419 62.9472 28.8419 60.2214C28.8419 57.4956 29.3617 55.0947 30.4032 53.0166C31.4443 50.9391 32.942 49.3245 34.8975 48.171C36.853 47.0184 39.1676 46.4428 41.8431 46.4428C44.5181 46.4428 46.8326 47.0193 48.7881 48.171C50.7436 49.3235 52.2414 50.9391 53.2829 53.0166C54.3239 55.0947 54.8442 57.4956 54.8442 60.2214C54.8442 62.9472 54.3239 65.3486 53.2829 67.4262C52.2414 69.5037 50.7436 71.1193 48.7881 72.2718C46.8326 73.4244 44.5171 74 41.8431 74C39.1685 74 36.853 73.4235 34.8975 72.2718Z"
|
|
224
|
+
fill="#522A10"
|
|
225
|
+
/>
|
|
226
|
+
</g>
|
|
227
|
+
<mask
|
|
228
|
+
id="mask11_33_8014"
|
|
229
|
+
style={{
|
|
230
|
+
maskType: "luminance"
|
|
231
|
+
}}
|
|
232
|
+
maskUnits="userSpaceOnUse"
|
|
233
|
+
x={0}
|
|
234
|
+
y={0}
|
|
235
|
+
width={208}
|
|
236
|
+
height={74}
|
|
237
|
+
>
|
|
238
|
+
<path d="M0 7.62939e-06H208V74H0V7.62939e-06Z" fill="white" />
|
|
239
|
+
</mask>
|
|
240
|
+
<g mask="url(#mask11_33_8014)">
|
|
241
|
+
<path
|
|
242
|
+
d="M72.0567 59.7926L79.6235 73.2435H69.694L65.9611 65.5714L62.2277 73.2435H53.1106L60.5263 60.1458L53.035 47.2003H62.8885L66.5194 54.5942L70.1507 47.2003H79.2168L72.0552 59.7936L72.0567 59.7926Z"
|
|
243
|
+
fill="#522A10"
|
|
244
|
+
/>
|
|
245
|
+
</g>
|
|
246
|
+
<mask
|
|
247
|
+
id="mask12_33_8014"
|
|
248
|
+
style={{
|
|
249
|
+
maskType: "luminance"
|
|
250
|
+
}}
|
|
251
|
+
maskUnits="userSpaceOnUse"
|
|
252
|
+
x={0}
|
|
253
|
+
y={0}
|
|
254
|
+
width={208}
|
|
255
|
+
height={74}
|
|
256
|
+
>
|
|
257
|
+
<path d="M0 7.62939e-06H208V74H0V7.62939e-06Z" fill="white" />
|
|
258
|
+
</mask>
|
|
259
|
+
<g mask="url(#mask12_33_8014)">
|
|
260
|
+
<path
|
|
261
|
+
d="M91.2434 63.427H81.3663V73.2435H91.2434V63.427Z"
|
|
262
|
+
fill="#522A10"
|
|
263
|
+
/>
|
|
264
|
+
</g>
|
|
265
|
+
</g>
|
|
266
|
+
<defs>
|
|
267
|
+
<clipPath id="clip0_33_8014">
|
|
268
|
+
<rect width={208} height={74} fill="white" />
|
|
269
|
+
</clipPath>
|
|
270
|
+
</defs>
|
|
271
|
+
</svg>
|
|
272
|
+
)
|
|
273
|
+
const ForwardRef = forwardRef(SvgButternutWordmark)
|
|
274
|
+
export default ForwardRef
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import type { SVGProps } from "react"
|
|
3
|
+
import { Ref, forwardRef } from "react"
|
|
4
|
+
const SvgPsiBufetFavicon = (
|
|
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
|
+
<g clipPath="url(#clip0_537_5980)">
|
|
18
|
+
<rect width={104} height={104} fill="#522A10" />
|
|
19
|
+
<rect width={104} height={104} fill="#522A10" />
|
|
20
|
+
<rect
|
|
21
|
+
x={4.0625}
|
|
22
|
+
y={4.0625}
|
|
23
|
+
width={95.875}
|
|
24
|
+
height={95.875}
|
|
25
|
+
rx={2.4375}
|
|
26
|
+
fill="#FFD54D"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
d="M11.375 77.3408V26.6592H31.837C35.6721 26.6592 38.9489 27.3631 41.6675 28.7709C44.386 30.1787 46.4492 32.2055 47.857 34.8512C49.2648 37.4727 49.9688 40.6039 49.9688 44.2448C49.9688 47.8615 49.2648 50.9805 47.857 53.602C46.4492 56.2234 44.386 58.2381 41.6675 59.6459C38.9489 61.0295 35.6599 61.7212 31.8006 61.7212H25.3561V77.3408H11.375ZM30.3078 51.1262C32.2739 51.1262 33.7424 50.5679 34.7133 49.4513C35.7085 48.3348 36.2061 46.6114 36.2061 44.2812C36.2061 41.951 35.7085 40.2398 34.7133 39.1475C33.7424 38.031 32.2739 37.4727 30.3078 37.4727H25.3561V51.1262H30.3078Z"
|
|
30
|
+
fill="#522A10"
|
|
31
|
+
/>
|
|
32
|
+
<path
|
|
33
|
+
d="M84.2992 50.3584C87.0501 51.2582 89.1194 52.7539 90.507 54.8455C91.919 56.9371 92.625 59.4664 92.625 62.4335C92.625 67.2246 91.2374 70.9214 88.4621 73.5237C85.6868 76.1016 81.6699 77.3906 76.4115 77.3906H53.625V26.6094H75.316C78.6269 26.6094 81.4387 27.1687 83.7514 28.2875C86.0641 29.3819 87.8048 30.9263 88.9733 32.9205C90.1418 34.9148 90.7261 37.2496 90.7261 39.9249C90.7261 42.3083 90.1784 44.3998 89.0829 46.1996C88.0117 47.975 86.4171 49.3612 84.2992 50.3584ZM67.2823 37.1523V47.4034H72.7598C74.3909 47.4034 75.596 46.99 76.375 46.1631C77.1784 45.3362 77.5801 44.035 77.5801 42.2596C77.5801 38.8548 75.9855 37.1523 72.7963 37.1523H67.2823ZM74.1475 66.8477C75.7786 66.8477 76.9958 66.3977 77.7992 65.4979C78.6269 64.5737 79.0407 63.2118 79.0407 61.412C79.0407 57.7396 77.3975 55.9034 74.111 55.9034H67.2823V66.8477H74.1475Z"
|
|
34
|
+
fill="#522A10"
|
|
35
|
+
/>
|
|
36
|
+
</g>
|
|
37
|
+
<defs>
|
|
38
|
+
<clipPath id="clip0_537_5980">
|
|
39
|
+
<rect width={104} height={104} fill="white" />
|
|
40
|
+
</clipPath>
|
|
41
|
+
</defs>
|
|
42
|
+
</svg>
|
|
43
|
+
)
|
|
44
|
+
const ForwardRef = forwardRef(SvgPsiBufetFavicon)
|
|
45
|
+
export default ForwardRef
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
import type { SVGProps } from "react"
|
|
3
|
+
import { Ref, forwardRef } from "react"
|
|
4
|
+
const SvgPsiBufetPrimary = (
|
|
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_8165)">
|
|
18
|
+
<path d="M0 146H208V0H0V146Z" fill="#522A10" />
|
|
19
|
+
<mask
|
|
20
|
+
id="mask0_33_8165"
|
|
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_8165)">
|
|
33
|
+
<path
|
|
34
|
+
d="M8.60046 5.07304H199.406C201.041 5.07304 202.366 6.39844 202.366 8.0336V137.966C202.366 139.601 201.041 140.926 199.406 140.926H8.60046C6.96536 140.926 5.64001 139.601 5.64001 137.966V8.0336C5.64001 6.39844 6.96536 5.07304 8.60046 5.07304Z"
|
|
35
|
+
fill="#FFD54D"
|
|
36
|
+
/>
|
|
37
|
+
</g>
|
|
38
|
+
<mask
|
|
39
|
+
id="mask1_33_8165"
|
|
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_8165)">
|
|
52
|
+
<path
|
|
53
|
+
d="M178.215 48.1292C175.171 48.1292 172.93 47.4733 171.494 46.162C170.073 44.8348 169.363 42.7114 169.363 39.7917V30.1892H165.733V23.6318H168.005C168.801 23.6318 169.433 23.4755 169.901 23.1635C170.37 22.8355 170.729 22.3123 170.979 21.5942C171.385 20.3296 171.689 18.893 171.892 17.2851H177.349V23.6318H182.103V30.1892H177.349V38.7847C177.349 39.8308 177.567 40.5802 178.005 41.0331C178.457 41.4859 179.175 41.7121 180.159 41.7121C180.846 41.7121 181.564 41.6263 182.314 41.4546V47.5669C181.814 47.739 181.182 47.8717 180.417 47.9652C179.667 48.0747 178.933 48.1292 178.215 48.1292Z"
|
|
54
|
+
fill="#522A10"
|
|
55
|
+
/>
|
|
56
|
+
</g>
|
|
57
|
+
<mask
|
|
58
|
+
id="mask2_33_8165"
|
|
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_8165)">
|
|
71
|
+
<path
|
|
72
|
+
d="M154.222 28.9951C153.113 28.9951 152.239 29.3698 151.599 30.1192C150.974 30.8687 150.638 31.9538 150.592 33.3746H157.477C157.493 31.907 157.212 30.8137 156.634 30.0956C156.072 29.3621 155.268 28.9951 154.222 28.9951ZM150.592 37.8713V38.246C150.592 39.6041 150.888 40.627 151.481 41.3137C152.09 41.9855 152.949 42.3212 154.058 42.3212C154.995 42.3212 155.713 42.11 156.212 41.6885C156.727 41.2515 157.048 40.5956 157.172 39.7213H164.784C164.378 42.4692 163.246 44.624 161.388 46.1852C159.546 47.7308 157.094 48.5039 154.034 48.5039C151.708 48.5039 149.671 48.0043 147.922 47.005C146.189 45.9903 144.846 44.5305 143.894 42.6255C142.957 40.7051 142.489 38.41 142.489 35.7401C142.489 33.0857 142.965 30.7983 143.917 28.8779C144.87 26.9575 146.212 25.4899 147.945 24.4747C149.678 23.4446 151.708 22.9291 154.034 22.9291C156.283 22.9291 158.242 23.3974 159.913 24.3344C161.599 25.271 162.894 26.6372 163.8 28.4327C164.721 30.2128 165.182 32.3517 165.182 34.8498C165.182 36.2865 165.104 37.2935 164.948 37.8713H150.592Z"
|
|
73
|
+
fill="#522A10"
|
|
74
|
+
/>
|
|
75
|
+
</g>
|
|
76
|
+
<mask
|
|
77
|
+
id="mask3_33_8165"
|
|
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_8165)">
|
|
90
|
+
<path
|
|
91
|
+
d="M129.736 47.8013V30.1892H126.13V23.6318H129.736V21.9457C129.736 19.0728 130.463 16.9258 131.914 15.505C133.366 14.0683 135.575 13.3502 138.542 13.3502C139.291 13.3502 140.049 13.4129 140.814 13.5378C141.594 13.6468 142.227 13.8031 142.711 14.0061V20.1189C142.086 19.9 141.376 19.7909 140.579 19.7909C139.611 19.7909 138.893 20.0017 138.425 20.4232C137.956 20.8447 137.722 21.4929 137.722 22.3672V23.6318H142.523V30.1892H137.722V47.8013H129.736Z"
|
|
92
|
+
fill="#522A10"
|
|
93
|
+
/>
|
|
94
|
+
</g>
|
|
95
|
+
<mask
|
|
96
|
+
id="mask4_33_8165"
|
|
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_8165)">
|
|
109
|
+
<path
|
|
110
|
+
d="M109.677 48.5039C107.148 48.5039 105.212 47.739 103.869 46.2088C102.526 44.6631 101.855 42.4851 101.855 39.6745V23.6317H110.005V37.918C110.005 39.0268 110.216 39.8621 110.637 40.4239C111.075 40.9862 111.746 41.267 112.651 41.267C113.682 41.267 114.478 40.9158 115.04 40.2132C115.555 39.5573 115.813 38.5503 115.813 37.1918V23.6317H123.963V47.8012H117.944C117.913 47.0986 117.811 46.5367 117.64 46.1152C117.453 45.6156 117.164 45.3658 116.773 45.3658C116.601 45.3658 116.453 45.4048 116.328 45.4825C116.204 45.5606 116.04 45.7091 115.837 45.9276C115.024 46.802 114.127 47.4501 113.143 47.8716C112.175 48.2932 111.02 48.5039 109.677 48.5039Z"
|
|
111
|
+
fill="#522A10"
|
|
112
|
+
/>
|
|
113
|
+
</g>
|
|
114
|
+
<mask
|
|
115
|
+
id="mask5_33_8165"
|
|
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_8165)">
|
|
128
|
+
<path
|
|
129
|
+
d="M87.8387 41.0331C88.8847 41.0331 89.665 40.7442 90.1805 40.1664C90.7115 39.5732 90.9767 38.6989 90.9767 37.5434C90.9767 35.1855 89.923 34.0069 87.815 34.0069H83.4357V41.0331H87.8387ZM83.4357 21.9689V28.55H86.9484C87.9945 28.55 88.7675 28.2847 89.2671 27.7537C89.7822 27.2228 90.0397 26.3875 90.0397 25.2478C90.0397 23.0617 89.0173 21.9689 86.9721 21.9689H83.4357ZM94.3491 30.4472C96.1132 31.0245 97.4403 31.9847 98.3301 33.3278C99.2358 34.6705 99.6886 36.2943 99.6886 38.1992C99.6886 41.2747 98.7988 43.648 97.0189 45.3185C95.2389 46.9737 92.6627 47.8013 89.2903 47.8013H74.677V15.2007H88.5881C90.7114 15.2007 92.5146 15.5595 93.9976 16.2776C95.481 16.9803 96.5974 17.9718 97.3468 19.2522C98.0962 20.5327 98.4709 22.0316 98.4709 23.7489C98.4709 25.2792 98.1194 26.6218 97.4172 27.7769C96.73 28.917 95.7071 29.8068 94.3491 30.4472Z"
|
|
130
|
+
fill="#522A10"
|
|
131
|
+
/>
|
|
132
|
+
</g>
|
|
133
|
+
<mask
|
|
134
|
+
id="mask6_33_8165"
|
|
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_8165)">
|
|
147
|
+
<path
|
|
148
|
+
d="M71.0111 47.8013H62.8615V23.6318H71.0111V47.8013ZM66.9361 21.3366C66.0618 21.3366 65.2733 21.149 64.5711 20.7743C63.8839 20.3996 63.3452 19.8845 62.9551 19.2286C62.5645 18.5732 62.3696 17.8392 62.3696 17.0271C62.3696 16.2154 62.5645 15.4814 62.9551 14.8259C63.3452 14.1701 63.8839 13.6545 64.5711 13.2798C65.2733 12.9051 66.0618 12.718 66.9361 12.718C67.8104 12.718 68.5912 12.9051 69.2784 13.2798C69.9806 13.6545 70.5274 14.1701 70.9176 14.8259C71.3077 15.4814 71.503 16.2154 71.503 17.0271C71.503 17.8392 71.3077 18.5732 70.9176 19.2286C70.5274 19.8845 69.9806 20.3996 69.2784 20.7743C68.5912 21.149 67.8104 21.3366 66.9361 21.3366Z"
|
|
149
|
+
fill="#522A10"
|
|
150
|
+
/>
|
|
151
|
+
</g>
|
|
152
|
+
<mask
|
|
153
|
+
id="mask7_33_8165"
|
|
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_8165)">
|
|
166
|
+
<path
|
|
167
|
+
d="M193.487 47.8013H185.263V39.5769H193.487V47.8013Z"
|
|
168
|
+
fill="#522A10"
|
|
169
|
+
/>
|
|
170
|
+
</g>
|
|
171
|
+
<mask
|
|
172
|
+
id="mask8_33_8165"
|
|
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_8165)">
|
|
185
|
+
<path
|
|
186
|
+
d="M50.7759 48.5039C48.7152 48.5039 46.9116 48.176 45.3659 47.5201C43.8203 46.8488 42.5872 45.8886 41.6661 44.6395C40.7604 43.3904 40.2217 41.9074 40.05 40.1896H47.8717C47.9344 41.0798 48.2078 41.7589 48.6916 42.2272C49.1757 42.68 49.8625 42.9067 50.7527 42.9067C51.4862 42.9067 52.0485 42.7504 52.4387 42.4379C52.8288 42.11 53.0241 41.6576 53.0241 41.0798C53.0241 40.4866 52.7902 40.0101 52.3215 39.6509C51.8687 39.2761 51.0416 38.9641 49.8393 38.7143C47.591 38.2773 45.7874 37.715 44.4294 37.0282C43.0868 36.341 42.103 35.4821 41.4785 34.452C40.8694 33.4059 40.5651 32.1332 40.5651 30.6343C40.5651 29.0886 40.9712 27.7383 41.7828 26.5827C42.5949 25.4118 43.7504 24.5138 45.2492 23.8893C46.7476 23.2493 48.4963 22.9291 50.4947 22.9291C53.5237 22.9291 55.8815 23.6163 57.5674 24.9903C59.2693 26.3643 60.2531 28.3628 60.5183 30.9859H53.0241C52.9619 30.127 52.743 29.5024 52.3683 29.1122C51.9936 28.7062 51.424 28.5031 50.6587 28.5031C50.0033 28.5031 49.4723 28.6594 49.0663 28.9714C48.6761 29.268 48.4808 29.6896 48.4808 30.2364C48.4808 30.6579 48.5903 31.009 48.8087 31.2902C49.0431 31.5714 49.4255 31.8212 49.9565 32.0396C50.5029 32.2581 51.2678 32.4611 52.2515 32.6483C55.296 33.226 57.5052 34.1554 58.8792 35.4353C60.2531 36.7003 60.9398 38.41 60.9398 40.5643C60.9398 42.1572 60.5183 43.5544 59.6754 44.7567C58.8478 45.9431 57.661 46.8647 56.1154 47.5201C54.5857 48.176 52.8057 48.5039 50.7759 48.5039Z"
|
|
187
|
+
fill="#522A10"
|
|
188
|
+
/>
|
|
189
|
+
</g>
|
|
190
|
+
<mask
|
|
191
|
+
id="mask9_33_8165"
|
|
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_8165)">
|
|
204
|
+
<path
|
|
205
|
+
d="M26.7122 30.9387C27.9771 30.9387 28.9214 30.5798 29.5459 29.8617C30.1863 29.1432 30.5061 28.0349 30.5061 26.536C30.5061 25.0371 30.1863 23.9361 29.5459 23.2334C28.9214 22.5153 27.9771 22.1565 26.7122 22.1565H23.5274V30.9387H26.7122ZM14.5343 47.8013V15.2007H27.696C30.1627 15.2007 32.2706 15.6535 34.0193 16.5588C35.7679 17.4645 37.0946 18.7681 38.0003 20.47C38.906 22.1565 39.3588 24.1705 39.3588 26.5124C39.3588 28.8388 38.906 30.8451 38.0003 32.5316C37.0946 34.2176 35.7679 35.5135 34.0193 36.4192C32.2706 37.309 30.155 37.7541 27.6723 37.7541H23.5274V47.8013H14.5343Z"
|
|
206
|
+
fill="#522A10"
|
|
207
|
+
/>
|
|
208
|
+
</g>
|
|
209
|
+
</g>
|
|
210
|
+
<defs>
|
|
211
|
+
<clipPath id="clip0_33_8165">
|
|
212
|
+
<rect width={208} height={146} fill="white" />
|
|
213
|
+
</clipPath>
|
|
214
|
+
</defs>
|
|
215
|
+
</svg>
|
|
216
|
+
)
|
|
217
|
+
const ForwardRef = forwardRef(SvgPsiBufetPrimary)
|
|
218
|
+
export default ForwardRef
|