@hero-design/rn 8.106.1 → 8.108.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 +3 -3
- package/CHANGELOG.md +22 -0
- package/es/index.js +639 -133
- package/lib/index.js +640 -132
- package/package.json +1 -1
- package/src/components/Card/DataCard/StyledDataCard.tsx +6 -1
- package/src/components/Card/index.tsx +2 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePicker.spec.tsx.snap +6 -3
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +2 -1
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerCalendar.spec.tsx.snap +2 -1
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +4 -2
- package/src/components/Illustration/BaseSvg.tsx +28 -0
- package/src/components/Illustration/__tests__/index.spec.tsx +114 -0
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Add.tsx +6 -5
- package/src/components/Illustration/assets/AllInOneSketch.tsx +26 -0
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Boom.tsx +12 -5
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Build.tsx +12 -5
- package/src/components/Illustration/assets/CelebrationSketch.tsx +21 -0
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Clock.tsx +12 -5
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Confetti.tsx +14 -7
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Connections.tsx +12 -5
- package/src/components/Illustration/assets/DiySketch.tsx +26 -0
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Error.tsx +13 -6
- package/src/components/Illustration/assets/ErrorSketch.tsx +26 -0
- package/src/components/Illustration/assets/FreedomSketch.tsx +24 -0
- package/src/components/Illustration/assets/GrowingSketch.tsx +28 -0
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Info.tsx +12 -5
- package/src/components/Illustration/assets/InstantSketch.tsx +26 -0
- package/src/components/Illustration/assets/LiftSketch.tsx +24 -0
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/List.tsx +12 -5
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Location.tsx +12 -5
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Lock.tsx +12 -5
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Merge.tsx +12 -5
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/NoResult.tsx +12 -5
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Notifications.tsx +12 -5
- package/src/components/Illustration/assets/OnDemandSketch.tsx +24 -0
- package/src/components/Illustration/assets/ProcessingSketch.tsx +24 -0
- package/src/components/Illustration/assets/RemoteJobsSketch.tsx +28 -0
- package/src/components/Illustration/assets/RewardSketch.tsx +28 -0
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Search.tsx +12 -5
- package/src/components/Illustration/assets/SearchSketch.tsx +28 -0
- package/src/components/Illustration/assets/SecuritySketch.tsx +24 -0
- package/src/components/Illustration/assets/SentSketch.tsx +24 -0
- package/src/components/Illustration/assets/SpeedSketch.tsx +24 -0
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Star.tsx +12 -5
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Success.tsx +13 -6
- package/src/components/Illustration/assets/SuperchargeSketch.tsx +24 -0
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/Unlock.tsx +12 -5
- package/src/components/Illustration/assets/UnlockSketch.tsx +20 -0
- package/src/components/{StatusScreens/StatusIcon → Illustration}/assets/User.tsx +12 -5
- package/src/components/Illustration/assets/WorkflowSketch.tsx +24 -0
- package/src/components/Illustration/constants.ts +3 -0
- package/src/components/Illustration/hooks/useMonoColor.ts +15 -0
- package/src/components/Illustration/illustrations.ts +85 -0
- package/src/components/Illustration/index.tsx +64 -0
- package/src/components/Illustration/types.ts +7 -0
- package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +2 -0
- package/src/components/Search/SearchOneLine.tsx +2 -1
- package/src/components/Search/__tests__/__snapshots__/SearchOneLine.spec.tsx.snap +7 -7
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +14 -7
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +12 -6
- package/src/components/StatusScreens/Empty/__tests__/__snapshots__/index.spec.tsx.snap +123 -114
- package/src/components/StatusScreens/Empty/index.tsx +5 -5
- package/src/components/StatusScreens/Error/__tests__/__snapshots__/index.spec.tsx.snap +157 -148
- package/src/components/StatusScreens/Error/index.tsx +5 -5
- package/src/components/StatusScreens/Success/__tests__/__snapshots__/index.spec.tsx.snap +123 -114
- package/src/components/StatusScreens/Success/index.tsx +5 -5
- package/src/components/TextInput/StyledTextInput.tsx +2 -1
- package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +34 -17
- package/src/components/TextInput/__tests__/index.spec.tsx +34 -0
- package/src/components/TextInput/index.tsx +4 -1
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +4 -2
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +4 -2
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +2 -2
- package/src/components/Typography/Body/__tests__/__snapshots__/StyledBody.tsx.snap +1 -1
- package/src/components/Typography/Body/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/Typography/Caption/__tests__/__snapshots__/StyledCaption.spec.tsx.snap +1 -1
- package/src/components/Typography/Caption/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/Typography/Label/__tests__/__snapshots__/StyledLabel.tsx.snap +1 -1
- package/src/components/Typography/Label/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +1 -1
- package/src/components/Typography/Title/__tests__/__snapshots__/StyledTitle.tsx.snap +1 -1
- package/src/components/Typography/Title/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
- package/src/index.ts +7 -0
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +13 -3
- package/src/theme/components/card.ts +5 -1
- package/src/theme/components/textInput.ts +9 -2
- package/src/theme/components/typography.ts +1 -1
- package/stats/8.106.1/rn-stats.html +0 -2
- package/stats/8.107.0/rn-stats.html +4844 -0
- package/stats/8.108.0/rn-stats.html +4842 -0
- package/types/components/Card/DataCard/StyledDataCard.d.ts +7 -1
- package/types/components/Card/index.d.ts +7 -0
- package/types/components/Illustration/BaseSvg.d.ts +8 -0
- package/types/components/Illustration/assets/Add.d.ts +4 -0
- package/types/components/Illustration/assets/AllInOneSketch.d.ts +4 -0
- package/types/components/Illustration/assets/Boom.d.ts +4 -0
- package/types/components/Illustration/assets/Build.d.ts +4 -0
- package/types/components/Illustration/assets/CelebrationSketch.d.ts +4 -0
- package/types/components/Illustration/assets/Clock.d.ts +4 -0
- package/types/components/Illustration/assets/Confetti.d.ts +4 -0
- package/types/components/Illustration/assets/Connections.d.ts +4 -0
- package/types/components/Illustration/assets/DiySketch.d.ts +4 -0
- package/types/components/Illustration/assets/Error.d.ts +4 -0
- package/types/components/Illustration/assets/ErrorSketch.d.ts +4 -0
- package/types/components/Illustration/assets/FreedomSketch.d.ts +4 -0
- package/types/components/Illustration/assets/GrowingSketch.d.ts +4 -0
- package/types/components/Illustration/assets/Info.d.ts +4 -0
- package/types/components/Illustration/assets/InstantSketch.d.ts +4 -0
- package/types/components/Illustration/assets/LiftSketch.d.ts +4 -0
- package/types/components/Illustration/assets/List.d.ts +4 -0
- package/types/components/Illustration/assets/Location.d.ts +4 -0
- package/types/components/Illustration/assets/Lock.d.ts +4 -0
- package/types/components/Illustration/assets/Merge.d.ts +4 -0
- package/types/components/Illustration/assets/NoResult.d.ts +4 -0
- package/types/components/Illustration/assets/Notifications.d.ts +4 -0
- package/types/components/Illustration/assets/OnDemandSketch.d.ts +4 -0
- package/types/components/Illustration/assets/ProcessingSketch.d.ts +4 -0
- package/types/components/Illustration/assets/RemoteJobsSketch.d.ts +4 -0
- package/types/components/Illustration/assets/RewardSketch.d.ts +4 -0
- package/types/components/Illustration/assets/Search.d.ts +4 -0
- package/types/components/Illustration/assets/SearchSketch.d.ts +4 -0
- package/types/components/Illustration/assets/SecuritySketch.d.ts +4 -0
- package/types/components/Illustration/assets/SentSketch.d.ts +4 -0
- package/types/components/Illustration/assets/SpeedSketch.d.ts +4 -0
- package/types/components/Illustration/assets/Star.d.ts +4 -0
- package/types/components/Illustration/assets/Success.d.ts +4 -0
- package/types/components/Illustration/assets/SuperchargeSketch.d.ts +4 -0
- package/types/components/Illustration/assets/Unlock.d.ts +4 -0
- package/types/components/Illustration/assets/UnlockSketch.d.ts +4 -0
- package/types/components/Illustration/assets/User.d.ts +4 -0
- package/types/components/Illustration/assets/WorkflowSketch.d.ts +4 -0
- package/types/components/Illustration/constants.d.ts +1 -0
- package/types/components/Illustration/hooks/useMonoColor.d.ts +5 -0
- package/types/components/Illustration/illustrations.d.ts +42 -0
- package/types/components/Illustration/index.d.ts +29 -0
- package/types/components/Illustration/types.d.ts +7 -0
- package/types/components/StatusScreens/Empty/index.d.ts +2 -2
- package/types/components/StatusScreens/Error/index.d.ts +2 -2
- package/types/components/StatusScreens/Success/index.d.ts +2 -2
- package/types/components/TextInput/index.d.ts +2 -1
- package/types/index.d.ts +2 -1
- package/types/theme/components/card.d.ts +3 -0
- package/types/theme/components/textInput.d.ts +8 -1
- package/src/components/StatusScreens/StatusIcon/__tests__/index.spec.tsx +0 -35
- package/src/components/StatusScreens/StatusIcon/index.tsx +0 -69
- package/src/components/StatusScreens/StatusIcon/types.ts +0 -5
- package/types/components/StatusScreens/StatusIcon/assets/Add.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Boom.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Build.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Clock.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Confetti.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Connections.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Error.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Info.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/List.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Location.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Lock.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Merge.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/NoResult.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Notifications.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Search.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Star.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Success.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/Unlock.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/assets/User.d.ts +0 -4
- package/types/components/StatusScreens/StatusIcon/index.d.ts +0 -29
- package/types/components/StatusScreens/StatusIcon/types.d.ts +0 -5
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import
|
|
3
|
-
import type {
|
|
2
|
+
import { ClipPath, Defs, Rect } from 'react-native-svg';
|
|
3
|
+
import type { IllustrationSvgProps } from '../types';
|
|
4
|
+
import BaseSvg from '../BaseSvg';
|
|
4
5
|
|
|
5
|
-
const ErrorIcon = ({
|
|
6
|
+
const ErrorIcon = ({
|
|
7
|
+
stroke,
|
|
8
|
+
fill,
|
|
9
|
+
testID,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
}: IllustrationSvgProps) => {
|
|
6
13
|
return (
|
|
7
|
-
<
|
|
14
|
+
<BaseSvg width={width} height={height} testID={testID}>
|
|
8
15
|
<Defs>
|
|
9
16
|
<ClipPath id="clip0_19647_1720">
|
|
10
|
-
<Rect width=
|
|
17
|
+
<Rect width={width} height={height} fill="white" />
|
|
11
18
|
</ClipPath>
|
|
12
19
|
</Defs>
|
|
13
20
|
<Rect
|
|
@@ -48,7 +55,7 @@ const ErrorIcon = ({ stroke, fill, testID }: StatusSvgProps) => {
|
|
|
48
55
|
stroke={stroke}
|
|
49
56
|
strokeWidth="0.4"
|
|
50
57
|
/>
|
|
51
|
-
</
|
|
58
|
+
</BaseSvg>
|
|
52
59
|
);
|
|
53
60
|
};
|
|
54
61
|
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import type { IllustrationSvgProps } from '../types';
|
|
4
|
+
import BaseSvg from '../BaseSvg';
|
|
5
|
+
import useMonoColor from '../hooks/useMonoColor';
|
|
6
|
+
|
|
7
|
+
const ErrorSketch = ({ testID, width, height }: IllustrationSvgProps) => {
|
|
8
|
+
const { fill, stroke } = useMonoColor();
|
|
9
|
+
|
|
10
|
+
return (
|
|
11
|
+
<BaseSvg width={width} height={height} testID={testID} viewBox="0 0 90 96">
|
|
12
|
+
<Path
|
|
13
|
+
d="M9.604 12.355a.378.378 0 01-.013.362c-.297.497-.775.413-1.318-.213-.95-1.098-1.892-2.203-2.842-3.3-.458-.53-1.886-.963-2.312-.692-.523.33-.44.924-.581 1.408-.226.769-.045 1.544.187 2.287.484 1.543 1.008 3.074 1.511 4.618.692 2.138 1.37 4.276 2.074 6.407.936 2.868 1.899 5.73 2.829 8.597a551.97 551.97 0 012.009 6.323c.671 2.151 1.324 4.308 1.982 6.46.033.102.078.193.136.354-.077-1.653-.11-3.236-.387-4.818-.33-1.886-.381-3.798-.22-5.71.09-1.027.026-1.11-.995-1.066-.135.007-.277-.012-.42-.025-.206-.026-.555.051-.555-.2 0-.272.168-.601.49-.698.291-.09.627-.194.912-.136.607.123.645-.213.652-.64.026-3.403.09-6.807.265-10.21.039-.744-.045-1.506.433-2.158.11-.155.032-.29-.085-.426-.258-.298-.53-.595-.742-.924-.297-.465-.698-.413-1.118-.278-1.298.407-2.603.181-3.92.117-.523-.026-1.079.051-1.628.032-.265-.007-.465.129-.652-.032-.213-.181-.452-.51-.433-.756.052-.562.497-.71 1.027-.717 1.473-.013 2.945-.052 4.418-.071.187 0 .38.052.568.064.117.007.278.162.336-.019.032-.103-.064-.265-.136-.375-.264-.413-.568-.807-.82-1.233-.245-.42.058-.833.323-.976.33-.174.698.194.956.427 1.227 1.066 2.312 2.267 3.359 3.507 2.054 2.428 4.133 4.831 6.2 7.24 2.21 2.578 4.418 5.161 6.627 7.745 1.667 1.944 3.352 3.882 5 5.839.813.968 1.556 1.989 2.364 2.964.736.892 1.543 1.731 2.26 2.642.866 1.098 1.647 2.26 2.506 3.365.846 1.079 1.764 2.106 2.629 3.172.4.497.756 1.04 1.143 1.55.071.09.207.213.304.2 1.705-.194 3.042.788 4.463 1.447 1.033.484 2.202.814 2.977 1.698.756.853 1.686.414 2.494.42 1.847.013 3.59.272 5.244 1.098.33.162.55.097.769-.2.756-1.027 2.532-.982 3.21.103.44.692.775 1.428.388 2.274-.097.207 0 .336.167.459 1.247.91 2.397 1.976 3.12 3.326.782 1.453 1.583 2.92 2.08 4.515.168.53.633.717 1.033.956.911.542 1.783 1.13 2.507 1.905.387.42.846.194 1.24.11 1.136-.246 2.183.032 3.249.38.58.188 1.091 1.642 1.033 2.216-.078.763-.517 1.311-1.272 1.55-1.111.356-1.092.343-.64 1.396.627 1.446 1.105 2.925 1.195 4.527.026.504.53.653.924.504 1.976-.743 3.998-1.266 6.103-1.376.562-.026 1.13.213 1.44.73.401.672.937 1.298.62 2.235-.128.394.517.44.802.627.678.465 1.505.8 1.821 1.601.543 1.363.426 2.804-1.389 3.663-3.862 1.821-7.938 2.932-12.149 3.571-.252.04-.53.065-.768.013-.898-.2-1.092.407-1.228 1.053-.097.485-.394.782-.807.963-1.285.561-2.648.329-3.979.303-1.382-.032-2.79-.026-4.14-.271-1.092-.2-2.112-.756-2.59-1.912-.078-.187-.213-.18-.368-.161-4.521.523-9.062.361-13.596.277-1.034-.02-2.067-.026-3.094-.038-.226-.007-.491.032-.666-.072-.652-.38-1.059-.077-1.446.414-.976 1.24-2.513 1.518-3.83 2.157-1.014.491-2.016 1.079-3.191 1.163-1.285.097-2.396-.297-3.243-1.24-.904-1.008-.994-2.119-.374-3.236.136-.246.006-.226-.162-.246-3.72-.394-7.447-.73-11.18-.956-2.332-.142-4.638-.555-6.704-1.698-1.744-.963-3.282-2.164-3.579-4.36-.122-.898.29-1.621.82-2.235 1.434-1.653 3.185-2.868 5.297-3.52.252-.078.53-.123.794-.123.86.013.885-.542.86-1.175-.104-2.726-.136-5.465.058-8.184.058-.794-.143-1.705.439-2.441.103-.13-.045-.213-.162-.246-.407-.123-.646-.42-.788-.788-.891-2.3-1.912-4.547-2.629-6.917-1.26-4.18-2.602-8.332-3.914-12.498-.923-2.933-1.853-5.859-2.777-8.791-.698-2.235-1.324-4.496-2.093-6.704-.743-2.145-1.233-4.36-1.937-6.511-.692-2.132-1.286-4.295-1.938-6.433-.581-1.912-1.266-3.792-1.763-5.723-.394-1.53-.123-3.016.807-4.353.827-1.195 3.049-1.189 4.01-.142a82.338 82.338 0 013.347 3.862c.226.265.607.724.762 1.027zM24.33 32.158c-.103-.135-.206-.277-.31-.407-2.5-3.035-4.992-6.071-7.499-9.1-.736-.892-1.505-1.75-2.312-2.687-.013.2-.032.316-.026.433.078 1.479.181 2.958.233 4.437.077 2.357.11 4.715.174 7.072.007.136-.09.381.175.369 1.989-.117 3.985-.065 5.968-.278 1.194-.13 2.409-.168 3.597.161.259.872 0 1.583-.607 1.608-.75.026-1.505.04-2.254-.025-2.132-.188-4.257-.336-6.394-.297-.407.006-.491.174-.478.53.038.768.038 1.543.064 2.318.071 1.912-.239 3.785-.497 5.664-.142 1.066.136 2.184-.375 3.204-.09.181-.316.388-.277.53.316 1.137.671 2.267 1.027 3.39.955 3.023 1.924 6.04 2.88 9.063.4 1.26.762 2.532 1.137 3.765.207-.336.4-.69.627-1.014 1.614-2.286 3.623-4.192 5.832-5.89.316-.24.387-.498.336-.827-.246-1.55.052-3.126-.24-4.676-.057-.31-.122-.427-.445-.427-1.556-.006-3.12-.026-4.676-.051-1.105-.02-2.216-.04-3.32-.123-.084-.007-.31-.065-.53-.11-.42-.084-.562-.626-.232-.891a.269.269 0 01.07-.046c.33-.174.77-.18 1.17-.187 2.545-.038 5.083-.058 7.628-.077.252 0 .342-.104.342-.35-.013-.93-.051-1.866-.006-2.796.123-2.835-.084-5.697.497-8.506.097-.478-.052-1.111.568-1.402.026-.013.026-.174-.012-.22-.607-.716-1.221-1.433-1.835-2.157zm43.34 35.014c-.078-.174-.097-.252-.136-.31-.53-.768-1.098-1.511-1.62-2.273-.808-1.189-1.906-2.06-2.895-3.055-.226-.226-.38-.162-.477.135-.156.472-.33.937-.479 1.402-.303.93-.542 1.88-1.763 2.067-1.718.264-3.087-1.17-2.764-2.887.187-1.021.652-1.932.975-2.894.103-.304.058-.426-.239-.588-1.55-.852-3.236-.768-4.902-.704-1.731.065-3.43.407-5.116.808l-.73.174c.155.174.317.342.472.517.723.775.84 2.092.239 2.783-.814.944-2.293 1.234-3.171.556-.827-.633-1.59-1.344-2.37-2.028-.143-.123-.253-.142-.427-.058-1.402.684-2.887 1.22-3.992 2.422-.194.207-.659.297-.588.588.059.251.498.058.763.122.322.078.82.026.536.556-.343.64-.782 1.285-1.576 1.408-1.64.258-3.01 1.22-4.547 1.744-.995.336-1.964.852-2.771 1.666-.601.614-1.408 1.085-1.944 1.75-.763.944-1.486 1.932-1.906 3.133-.64 1.815-1.053 3.675-1.35 5.561-.174 1.111-.394 1.434-1.505 1.628-1.31.226-2.61.497-3.791 1.163-.246.142-.33.42-.252.549.13.226.433.542.62.516a6.336 6.336 0 011.602-.02c1.666.208 3.32.46 4.96.899 1.796.484 3.708.155 5.549.368 1.627.187 3.313.116 4.811.975.162.09.175.246.252.368-.096.058-.187.155-.29.168-.536.071-1.072.175-1.628.046-.71-.169-1.434-.336-2.157-.369-2.642-.11-5.284-.2-7.925-.213-2.041-.006-4.082-.084-6.104-.355-2.054-.278-2.26-1.085-1.634-3.016.239-.73 1.389-1.118.8-2.132-.006-.006 0-.02 0-.032.027-.265-.057-.343-.335-.246-1.802.66-3.326 1.706-4.657 3.088-.879.917-.775 2.17.252 2.945 1.795 1.356 3.875 1.931 6.045 2.164 2.332.245 4.677.33 7.008.53 1.79.154 3.566.484 5.355.555 2.422.097 4.74-.607 7.053-1.247 1.95-.536 3.507-.562 4.728 1.79.226.439.627.568 1.079.574 1.892.052 3.785.046 5.677.084 2.913.065 5.826-.02 8.733-.084 1.227-.032 2.467-.187 3.552-.82a4.626 4.626 0 012.558-.633c1.04.039 2.073.245 3.107.245 1.369 0 2.706.123 3.972.646.678.278 1.37.407 2.106.368 2.163-.11 4.23-.69 6.303-1.265 2.119-.588 4.192-1.292 6.15-2.306.587-.304.716-.911.251-1.286-.633-.51-1.31-.962-1.976-1.434-.045-.032-.123-.025-.181-.012-1.376.31-2.745.646-4.12.936-.666.136-1.35.504-2.016.278-.937-.317-2.19-.355-2.086-2.028-.769 1.04-1.473 1.776-2.461 2.28-1.763.898-3.682.898-5.555 1.162-2.81.4-5.632.44-8.455.046-.387-.052-.445-.382-.646-.575-.084-.084.007-.394.156-.42.374-.071.762-.058 1.143-.078 2.46-.142 4.934-.18 7.37-.645 1.556-.298 3.177-.181 4.682-.892 1.201-.562 1.88-1.42 1.9-2.745.031-2.093-.847-3.927-1.616-5.794-.077-.18-.22-.161-.38-.142-1.364.168-2.7.55-4.09.478-1.504-.077-2.195-.872-2.008-2.35.155-1.228 1.582-2.313 3.158-2.404.123-.006.285.04.343-.11.064-.16-.09-.251-.194-.335a12.573 12.573 0 00-3.152-1.931c-1.634-.692-3.133-1.609-4.599-2.597-.387-.265-.387-.678-.232-1.027.174-.4.53-.4.917-.187.581.323 1.175.62 1.776.91.917.46 1.84.892 2.855 1.376zM49.475 56.315c-.924-.465-1.828-.937-2.752-1.37-1.227-.574-2.364-1.362-3.868-1.15-1.208.175-2.222.776-3.32 1.19-3.585 1.343-7.028 2.983-10.205 5.108-3.34 2.229-6.466 4.722-9.108 7.777-.161.187-.497.142-.49.568.051 1.86.051 3.72.051 5.58 0 2.016-.02 4.031-.032 6.053 0 .22.097.413.323.278.471-.272.994-.343 1.511-.446.678-.136.976-.336.976-1.208 0-1.88.555-3.688 1.13-5.484.678-2.112 2.002-3.733 3.604-5.206 1.188-1.091 2.467-2.073 3.966-2.59 1.363-.471 2.706-1.13 4.198-1.181.297-.013.478-.233.562-.51.142-.466.316-.892.685-1.254 1.175-1.156 2.55-2.034 3.907-2.945.117-.078.317-.097.175-.349-.588-1.079-.956-2.17-.09-3.307.387-.51.994-.8 1.498-.684 1.085.245 2.086.762 2.835 1.646.117.136.252.143.433.136 1.37-.064 2.668-.478 4.011-.652zm-30.131 9.41c.349-.413.627-.781.95-1.11 2.81-2.913 6.045-5.284 9.436-7.46a29.18 29.18 0 018.093-3.611c1.415-.388 2.913-.407 4.321-.86.11-.031.213-.083.317-.122-.072-.103-.117-.239-.214-.303-.503-.33-.89-.776-1.246-1.24-.187-.246-2.319.006-2.526.096-.872.388-1.821.362-2.719.594-3.01.776-5.871 1.854-8.5 3.54-1.666 1.072-3.132 2.364-4.534 3.753-.62.62-1.434 1.13-1.828 1.866-1.15.795-2.047 2.048-2.067 2.255-.077.89.465 1.66.517 2.602zm7.202-30.964c.013.233.006.31.02.394.135.95.348 1.893.4 2.842.161 3.12.174 6.246.135 9.372 0 .149-.006.252.188.245.548-.006 1.091.007 1.64 0 1.996-.038 3.985-.135 5.981-.122.917.006 1.84.252 2.797.02a439.972 439.972 0 01-11.161-12.75zm13.706 15.327c-.478-.355-.62-1.078-1.202-1.072-.562 0-1.136-.032-1.698.02-1.744.142-3.488.103-5.239.11-1.517.006-3.029-.033-4.547-.065-.31-.007-.407.097-.387.42.064 1.22.103 2.441.148 3.668.013.285.13.194.284.117 1.337-.66 2.649-1.376 4.07-1.848 1.433-.471 2.86-.904 4.398-1.014 1.356-.103 2.694-.471 4.173-.336z"
|
|
14
|
+
fill={fill}
|
|
15
|
+
stroke={stroke}
|
|
16
|
+
/>
|
|
17
|
+
<Path
|
|
18
|
+
d="M50.98.729c.155 1.473.13 2.958.207 4.437.058 1.208.064 2.416.084 3.624.032 2.002.045 3.998.045 6 0 1.434-.104 2.88-.045 4.302.058 1.395-.136 2.758-.142 4.14-.007 1.847-.072 3.695-.123 5.542-.052 1.847-.24 3.694-.155 5.535.077 1.705-.065 3.404.006 5.103.058 1.408-.148 2.829-.22 4.25-.019.394.007.8.059 1.195.097.69-.149 1.356-.142 2.021.006.304-.059.64.051.988.194.633.4 1.835-.374 1.835-.252.058-.323-.039-.388-.136-.743-1.188-.607-2.551-.678-3.85-.11-2.04.013-4.082-.142-6.123-.142-1.808-.104-3.636-.084-5.45.02-1.745-.162-3.495-.213-5.246-.11-3.455-.22-6.91-.284-10.366a357.278 357.278 0 01-.065-9.114c.02-2.59.142-5.173.18-7.763.007-.304-.012-.537.014-.943.045-.614.33-.77.678-.692.2.033 1.68.233 1.731.71zM63.368 26.436c0 1.466-.077 2.938.02 4.398.11 1.64-.058 3.281.11 4.922.122 1.182-.059 2.396-.033 3.591.026 1.195-.052 2.39-.07 3.585-.02 1.35.122 2.79-.75 4.004-.226.31-.368.071-.504-.07-.71-.756-.95-1.687-.982-2.694a171.68 171.68 0 01-.116-7.951c.032-3.701.007-7.396.058-11.097.026-1.963.09-3.933.272-5.89.07-.808-.15-1.738.632-2.429.375-.33.453-.103.66.104.639.658.413 1.505.47 2.267.13 1.737.182 3.488.253 5.225.026.678.006 1.356.006 2.035h-.026zM77.946 63.575c.007.31-.013.95-.097 1.24-.103.349-.433.607-.781.575-.414-.04-.717-.55-.795-.963-.245-1.26-.516-2.538-.575-3.81-.155-3.65-.077-7.306-.038-10.961.032-3.437.026-6.866.193-10.302.046-.879.13-1.757.227-2.63.051-.484.394-.884.833-.91.413-.026.62.4.69.82.214 1.247.317 2.493.31 3.766-.012 1.621 0 3.249.136 4.857.136 1.634-.103 3.262.02 4.89.097 1.291.187 2.596.084 3.881-.097 1.234.032 2.461-.097 3.695-.097.962-.116 5.47-.11 5.852zM41.156 28.793c-.155-1.615-.355-3.352-.29-5.102.044-1.124.122-2.268.064-3.372-.097-1.854.07-3.701.02-5.548-.033-1.15.109-2.306.16-3.456.059-1.305.085-2.616.169-3.92.032-.504.155-1.053.704-1.228.426-.135.49.4.516.601.11.872.13 1.763.162 2.642.097 2.964.22 5.93.252 8.894.013 1.272.077 2.545-.058 3.823-.104.93 0 1.893.038 2.836.052 1.195-.206 2.37-.213 3.565-.006.872-.064 1.731-.38 2.552-.059.155-.078.361-.291.368-.207.006-.272-.175-.324-.343-.226-.723-.633-1.395-.53-2.312zM65.72 46.497c0-2.512.025-5.025-.026-7.538-.013-.516 0-.91.387-1.278.136-.13.284-.284.407-.207.148.09.355.187.388.426.142 1.079.342 2.151.335 3.243-.006 1.35-.006 2.693.007 4.043.006.814.064 1.621.064 2.435 0 .853-.019 1.712-.09 2.558-.026.336-.123.84-.588.775-.484-.058-.626-.536-.742-.988-.291-1.144-.143-2.313-.143-3.469zM79.91 65.248c0-1.654-.007-3.301.006-4.955 0-.523.123-1.123.704-1.207.73-.181 1.04.368 1.053.69.077 1.816.187 3.63.187 5.446 0 .723-.097 1.472-.433 2.157-.316.646-.62.394-.91.026-.491-.627-.594-1.382-.607-2.157zM55.908 86.381c-.058 1.124-.129 1.957-.93 2.416-.891.517-1.776.652-2.751.026-1.273-.814-2.636-1.48-3.947-2.229-.814-.465-1.556-1.027-2.002-1.873-.349-.665-.252-1.337.097-2.028.497-.988 1.427-1.15 2.325-1.337 1.014-.213 1.783.478 2.57.924 1.325.749 2.707 1.427 3.805 2.506.517.517.878 1.124.833 1.595zM51.484 74.038c-.155-1.388 1.143-1.918 2.021-2.732.782-.723 1.686-1.33 2.358-2.138.536-.646 1.04-1.247 1.86-1.473 1.137-.31 2.513.737 2.803 1.958.297 1.227-.252 2.073-1.046 2.816-1.253 1.175-2.5 2.364-3.862 3.404-1.531 1.162-2.513 1-3.702-.317-.303-.33-.484-.904-.432-1.518zM41.007 79.199c.013 1.137-.923 2.022-2.312 2.254-1.912.323-3.824.665-5.73 1.034-1.304.251-2.815-.788-2.964-2.087-.148-1.317.116-1.647 1.415-2.138 2.312-.872 4.747-1.065 7.17-1.304 1.4-.136 2.402.872 2.421 2.24zM68.458 79.096c-.065.93-.31 1.685-1.33 2.176-1.59.769-3.088 1.731-4.767 2.319-1.757.614-3.56.116-3.72-2.15-.033-.472.18-.905.458-1.28.723-.969 1.718-1.563 2.835-1.983 1.144-.426 2.28-.865 3.43-1.285 1.272-.459 3.087.82 3.094 2.203zM41.337 66.61c.73.646 1.382 1.37 2.047 2.08.627.678 1.253 1.363 1.828 2.08.62.769 1.02 1.653.717 2.655-.323 1.072-1.169 1.517-2.248 1.543-.904.02-1.498-.53-2.06-1.15-1.001-1.091-2.015-2.17-3.023-3.255-.743-.8-1.227-2.596-.536-3.662 1.072-1.395 2.655-.833 3.275-.29z"
|
|
19
|
+
fill={fill}
|
|
20
|
+
stroke={stroke}
|
|
21
|
+
/>
|
|
22
|
+
</BaseSvg>
|
|
23
|
+
);
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export default ErrorSketch;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import type { IllustrationSvgProps } from '../types';
|
|
4
|
+
import BaseSvg from '../BaseSvg';
|
|
5
|
+
import useMonoColor from '../hooks/useMonoColor';
|
|
6
|
+
|
|
7
|
+
const FreedomSketch = ({ testID, width, height }: IllustrationSvgProps) => {
|
|
8
|
+
const { fill } = useMonoColor();
|
|
9
|
+
|
|
10
|
+
return (
|
|
11
|
+
<BaseSvg width={width} height={height} testID={testID} viewBox="0 0 78 96">
|
|
12
|
+
<Path
|
|
13
|
+
d="M.005 52.652c.114-.469.06-.949.092-1.418.14-2.12.318-4.227.922-6.276.356-1.203.75-2.4 1.267-3.549.26-.582.496-1.175.788-1.741.517-1.003 1.083-1.98 1.65-2.96.808-1.397 1.747-2.691 2.766-3.937a51.592 51.592 0 012.275-2.583c1.03-1.089 2.087-2.146 3.225-3.122a36.097 36.097 0 013.742-2.815 32.563 32.563 0 013.003-1.709c-.29-.102-.533-.156-.744-.318-.55-.415-.733-1.008-.82-1.64-.14-1.03.443-1.687 1.192-2.28.825-.653 1.85-.642 2.605-.14.793.517 1.24 1.229 1.132 2.221-.027.254-.205.453-.242.712.21.021.36-.092.523-.156.878-.34 1.768-.416 2.69-.168.599.162 1.052.701 1.203 1.278.183.685.135 1.31-.189 1.93-.431.826-.965 1.56-1.839 1.958-.27.124-.28.324-.188.523.204.437.447.858.674 1.289.091.172.21.183.377.108.814-.362 1.677-.604 2.534-.82 1.138-.291 2.287-.534 3.457-.669.27-.032.927-.091 1.191-.118 1.58-.156 2.772-.232 3.069-.275.582-.076 1.633-.006 2.221.021 1.084.049 1.683.103 2.75.286.556.097 1.106.27 1.65.432.998.302 1.93.77 2.885 1.159.857.35 1.656.846 2.432 1.364 1.165.787 2.265 1.661 3.343 2.561 1.127.944 2.055 2.076 2.982 3.209.803.976 1.461 2.049 2.054 3.154.734 1.37 1.354 2.793 1.91 4.244.62 1.628 1.159 3.278 1.493 4.993.264 1.359.458 2.729.523 4.109a18.589 18.589 0 01-.259 3.942 27.809 27.809 0 01-.857 3.693c-.313.998-.68 1.974-1.046 2.955-.162.426-.4.798-.588 1.203-.529 1.132-1.192 2.184-1.941 3.181a23.279 23.279 0 01-1.235 1.515c-.572.642-1.116 1.305-1.747 1.893-1.046.97-2.12 1.909-3.306 2.701-.091.06-.161.12-.107.238.113.275.097.528.275.857.01.108.156.507.355.507.286.005.518-.183 1.025-.275.313-.097.636-.049.712-.08.458.005.733-.028 1.11.085.529.319 1.117.653 1.3 1.267.286.939.151 1.85-.577 2.583-.226.227-.48.432-.733.631-.119.097-.162.162 0 .254.922.517 1.245 1.946.857 2.863-.221.523-.642.873-1.073 1.219-.663.539-1.418.62-2.173.318-.766-.302-1.483-.982-1.531-1.947-.011-.22-.07-.286-.291-.21-2.001.695-4.029 1.316-6.083 1.822-1.769.432-3.537.885-5.365.976-.216.011-.486-.037-.647.114-.167.161-.011.41-.011.62-.01 1.288-.005 2.583-.005 3.882.145-.507.539-.544.976-.534 1.569.044 3.138-.07 4.707-.032 1.289.032 2.577-.038 3.866.076.464.037.933-.038 1.397-.044.922-.01 1.85 0 2.771-.005.95-.01 1.898 0 2.847.027.373.01.658.2.966.361.032.016.722.744 1.105 1.008.437.308.884.599 1.337.885.561.356.707.938.701 1.569-.005 1.003-.005 2.011-.01 3.014 0 .237-.108.437-.21.653-.303.636-.858.63-1.419.657-.992.049-1.99.011-2.987.022-1.338.01-2.675-.038-4.012-.027-1.72.01-3.446.038-5.166.043-1.553.011-3.106.006-4.659.011l-9.851-.005c-2.276-.006-4.557.005-6.832-.011-1.37-.01-2.74-.081-4.109-.13-1.612-.053-3.23-.091-4.842-.177-.21-.011-.453-.044-.464-.265-.01-.178.065-.426.356-.442.226-.016.453-.07.68-.097.636-.065 1.277-.038 1.914-.07.89-.049 1.79.022 2.68-.027a72.42 72.42 0 014.19-.113c1.504.005 3.014-.022 4.523-.016 2.589.01 5.177-.022 7.765-.006 2.011.011 4.023-.054 6.029.049.668.032 1.342-.038 2.016-.043 1.095-.011 2.19.037 3.284.037 1.38 0 2.761-.043 4.141-.037 1.246.005 4.605.2 5.565.032.275.043.334-.06.307-.307-.086-.847-.01-1.699 0-2.546 0-.215-.048-.301-.264-.285-1.574.113-3.154-.022-4.729.032-.965.032-1.936-.075-2.895-.016-1.154.07-8.428.027-9.722.043-1.462.016-2.923.06-4.39.07-1.197.01-2.4-.01-3.596-.01-1.737 0-3.473.016-5.21.005-1.65-.011-3.3-.054-4.944-.076-.976-.01-1.952-.021-2.928-.016-1.488.01-2.976-.048-4.464-.07-.48-.005-.437.022-.432.518.01.981.189 1.968-.032 2.95-.076.328-.378.457-.653.269-.41-.28-.383-.712-.366-1.116.032-1.02.08-2.039.145-3.058.011-.172.049-.394.216-.496.415-.264.836-.528 1.278-.744.77-.377 1.51-.95 2.286-1.38 1.785-.777 1.284-.68 2.55-.712 1.322-.033 3.576-.092 4.902-.07.572.005 1.149-.017 1.72-.006 1.203.022 2.405-.016 3.602.043.966.049 1.936-.059 2.901.098.167.026.26-.049.216-.205-.049-.966.043-2.842.097-3.43.01-.118.01-.248-.156-.264-.599-.043-1.181-.178-1.769-.28-.906-.157-1.828-.12-2.745-.232-.938-.119-1.887-.216-2.814-.41-1.672-.34-3.322-.755-4.891-1.445-1.186-.518-2.357-1.063-3.446-1.769-.712-.464-1.402-.965-2.124-1.418a25.82 25.82 0 01-2.05-1.434c-1.159-.896-2.178-1.947-3.235-2.955-1.035-.982-1.898-2.109-2.706-3.273-1.127-1.623-2.233-3.252-2.918-5.134-.436-1.191-1.116-2.28-1.429-3.532-.496-1.962-.938-3.925-1.078-5.953C.119 55.575.054 55.09 0 54.6c.005-.653.005-1.3.005-1.947zm37.962 22.54c.231-.184.523-.27.733-.497a14.812 14.812 0 011.682-1.552c1.079-.853 2.26-1.489 3.618-1.753.788-.151 1.586-.183 2.384-.216.868-.032 1.736-.14 2.577.2.113.048.205.005.297-.065.404-.313.825-.604 1.202-.944.151-.134.944-.787 1.116-.948 1.117-1.057 2.173-2.168 3.08-3.414.975-1.342 1.924-2.707 2.577-4.254.054-.124.092-.221-.027-.335-.48-.453-.523-1.019-.464-1.639.097-.922.27-1.828.41-2.739.232-1.477.35-2.977.83-4.405.184-.54.426-1.057 1.063-1.165.28-.049.296-.189.253-.383-.124-.566-.097-1.143-.183-1.71-.151-.938-.313-1.876-.54-2.798-.134-.555-.307-1.095-.604-1.59-.242-.405-.188-.89-.334-1.338-.442-1.343-1.008-2.631-1.617-3.898-.07-.14-.151-.2-.292-.081-.194.162-.426.237-.663.285-1.25.265-2.523.335-3.801.297a1.042 1.042 0 01-.529-.172 33.233 33.233 0 01-2.88-2.098c-.846-.69-1.708-1.364-2.56-2.044-.76-.604-1.489-1.256-2.314-1.78-.189-.118-.383-.21-.593-.032-.485.4-.97.793-1.45 1.203-.561.48-1.047 1.035-1.667 1.445-.399.264-.814.286-1.245.054a12.055 12.055 0 00-.928-.431c-.134-.06-.285-.097-.388.054-.248.35-.48.711-.728 1.056-.426.599-.809.836-1.429.421-.22-.151-.447-.302-.668-.458-.346-.243-.685-.496-1.063-.69-.178-.092-.366.053-.35.107.075.265-.582 1.548-.599 1.672-.07.55-.393.976-.588 1.461-.134.33-.366.615-.55.922-.345.599-.948.88-1.639.75a8.689 8.689 0 00-.372-.06c-1.256-.134-2.48-.399-3.64-.922-.636-.29-.948-.825-.884-1.51.06-.63.243-1.229.383-1.843.2-.863.728-1.354 1.607-1.5.377-.064.744-.204 1.202-.334-.706-.21-1.31-.426-1.909-.652-.318-.119-.372-.146-.555-.443-.183-.296-.253-.614-.119-.949.205-.49.426-.975.788-1.37.194-.215.366-.468.636-.608.566-.297 1.116-.173 1.677.048.593.232 1.197.442 1.817.582.087.022.183.06.248-.032.065-.086 0-.173-.043-.248-.167-.275-1.725-2.346-1.785-2.416-.113-.134-.264-.285-.102-.523.14-.205.2-.453.27-.722.016-.065-.055-.119-.114-.087-.388.21-.776.297-1.143.437-.162.06-.259.13-.307.318-.06.232-.189.459-.33.658a23.98 23.98 0 00-1.779 2.944c-.345.685-.82 1.176-1.633 1.278-.863.108-1.71.324-2.551.534-.108.027-.216.054-.27.162-.161.334-.334.668-.469 1.014-.108.27-.835.852-1.127.83-.436-.032-.798.178-1.17.35-.167.076-.248.243-.248.421.006.415-.07.825-.119 1.235-.08.647-.177 1.294-.355 1.925-.097.345-.27.647-.426.96-.685 1.353-1.677 2.432-2.853 3.36-.825.651-1.714 1.212-2.74 1.52-.09.027-.177.064-.188.194-.032.42-.178.82-.27 1.23-.107.49-.194.997-.258 1.493-.081.63-.135 1.278-.2 1.914-.07.658-.059 1.321-.14 1.984-.038.319-.048.658.027.966.334 1.396 1.23 2.464 2.254 3.375 1.02.911 2.34 1.337 3.634 1.742 1.052.329 1.623 1.105 2 2.065.238.604.319 1.251.421 1.887.033.2.13.27.324.28.307.017.61-.053.911-.053 1.386 0 2.772-.092 4.158.01.91.065 1.984.62 2.221 1.543.124.469.21.943.248 1.423.087 1.117-.032 2.233-.178 3.338-.091.685.011 1.294.4 1.866.48.7.964 1.402 1.39 2.135.152.259.297.523.518.744.464.464.771 1.057 1.273 1.51.215.194.383.35.68.372.344.027.69.065 1.03.124.997.183 2.005.237 3.013.227.976-.006 1.952-.12 2.923-.243.48-.076 1.051-.95 1.095-.981zm-4.45 7.355c1.36-.108 2.719-.21 4.077-.335.976-.086 1.936-.291 2.89-.501 1.181-.264 2.379-.48 3.538-.814 1.17-.34 2.346-.675 3.532-.944 1.666-.378 3.046-1.273 4.41-2.211.61-.42 1.128-.938 1.17-1.774.033-.706-.22-1.095-.69-1.224-.76-.216-1.493-.08-2.113.464a5.81 5.81 0 01-.782.571c-1.046.626-2.103 1.23-3.203 1.764-.41.199-.841.366-1.278.49-.27.076-2.044.712-2.243.782-.55.194-1.143.264-1.677.48-.383.156-.782.243-1.17.34-1.149.28-5.198.533-5.624.55-1.165.043-2.33.108-3.489-.022-1.202-.135-2.416-.21-3.591-.528-1.37-.367-2.761-.626-4.12-1.052a51.85 51.85 0 01-2.529-.873c-1.132-.42-4.61-1.99-5.171-2.427-.356-.28-.728-.555-1.073-.841-.528-.437-1.014-.922-1.504-1.402a38.633 38.633 0 01-1.72-1.806 28.74 28.74 0 01-3.279-4.417c-.803-1.326-1.332-2.782-1.925-4.2-.404-.96-.69-1.957-.944-2.971-.372-1.494-.652-3.004-.738-4.535-.097-1.769-.011-3.537.205-5.295.199-1.64.426-3.268.884-4.87a26.776 26.776 0 012.34-5.57 24.747 24.747 0 013.79-5.144c.831-.868 1.683-1.72 2.632-2.459 1.014-.787 2.017-1.585 3.084-2.297 1.03-.684 2.06-1.38 3.139-1.984 1.51-.847 3.127-1.494 4.53-2.534.743-.561 1.229-1.262 1.428-2.168.113-.507-.447-1.078-.863-1.143-.636-.097-1.229.065-1.817.243-.63.194-1.294.366-1.855.706-1.52.917-3.1 1.736-4.545 2.772-.604.431-1.251.803-1.828 1.272-.912.739-1.817 1.483-2.675 2.286-.857.804-1.72 1.597-2.491 2.476a69.703 69.703 0 00-3.354 4.092A27.578 27.578 0 003.22 42.09c-.485 1.235-.949 2.486-1.245 3.78a26.03 26.03 0 00-.69 5.327c-.028 1.149.01 4.805.161 5.49.291 1.337.42 2.712.777 4.038.2.734.404 1.467.647 2.195.172.523.404 1.035.528 1.569.108.448 1.143 2.454 1.58 2.987.183.221.259.534.437.76.431.545.863 1.09 1.267 1.661.572.81 1.175 1.591 1.85 2.324.442.48.846.993 1.337 1.43.943.851 1.844 1.757 2.858 2.534.107.08.204.172.296.27.556.592 1.251 1.018 1.909 1.466.485.329.998.647 1.515.944.917.523 1.839 1.04 2.815 1.46 1.057.46 2.12.89 3.235 1.16 1.607.394 3.225.744 4.88.917.464.048.933.113 1.391.113 1.58-.005 3.166.113 4.75.032zm.314-4.87a32.399 32.399 0 01-3.263-.307c-1.698-.254-3.337-.696-4.907-1.391-1.795-.798-3.542-1.699-5.176-2.81a45.74 45.74 0 01-3.748-2.852c-.949-.798-1.757-1.736-2.566-2.675-.248-.285-.464-.593-.685-.895-.448-.604-.922-1.186-1.348-1.806-.577-.836-1.052-1.73-1.542-2.62-.955-1.726-1.51-3.587-1.85-5.517-.313-1.769-.313-3.548-.189-5.338a34.93 34.93 0 01.782-5.295 24.186 24.186 0 011.952-5.441c.696-1.402 1.483-2.75 2.475-3.963 1.332-1.64 2.89-3.042 4.546-4.341 1.429-1.122 2.928-2.14 4.54-2.982.2-.102.205-.205.119-.383-.151-.313-.345-.61-.448-.949-.145-.48-.145-.48-.593-.302-.027.011-1.78 1.187-1.903 1.3-.168.15-1.03.668-1.149.846-.448.674-1.24.906-1.774 1.478-.183.2-.415.42-.652.598-.124.092-.604.502-.75.631-.329.297-1.796 1.764-2.011 2.07-.054.076-2.173 2.595-2.443 2.972-.178.253-.943 1.305-1.11 1.612-.319.583-.723 1.111-.977 1.736-.312.788-.674 1.553-1.003 2.335-.355.83-.641 1.688-.835 2.572-.146.658-.232 1.332-.367 1.995-.248 1.214-.307 2.427-.275 3.656.016.664.048 2.81.097 3.209.13.987.2 1.99.47 2.955.172.604.312 1.224.538 1.812.308.787.534 1.596.815 2.388.237.669.399 1.38.679 2.028.426.97.998 1.876 1.51 2.804.178.323.442.582.647.884.377.555.814 1.062 1.262 1.558.652.723 1.358 1.402 2.022 2.114.873.933 1.876 1.726 2.874 2.507a10.183 10.183 0 002.572 1.472c1.294.507 2.599.982 3.92 1.408a16.99 16.99 0 001.871.48c.771.15 1.526.366 2.286.55.378.086.755.167 1.133.226.577.087 1.143.227 1.73.216.48-.01 2.465.14 2.972.14 1.18 0 2.361.006 3.542-.097 1.354-.113 2.713-.135 4.012-.625.707-.265 1.45-.443 2.179-.658.366-.108.711-.286 1.094-.372.658-.146 1.284-.383 1.92-.615.108-.038.2-.103.135-.243-.162-.318-.324-.641-.496-.96-.081-.145-.178-.183-.35-.102-.853.372-1.71.75-2.6 1.035-.917.291-1.833.577-2.745.885-1.488.501-3.025.755-4.572.943-.755.092-1.52.081-2.367.124zm-1.057 6.255c-.173-.005-.221.06-.216.243.06 1.434.135 2.869.032 4.303-.032.469-.032.464.443.464h2.254c.156 0 .328-.006.334-.221.01-.68.027-1.36.005-2.039-.021-.835 0-1.666.054-2.496.016-.248-.043-.35-.302-.345-.604.01-2.34.097-2.604.091zM21.202 20.407c.005-.583-.259-.944-.615-1.246-.097-.08-.183-.226-.34-.183-.41.113-.765.345-1.024.658-.399.48-.28 1.024-.043 1.537.275.603.755.679 1.219.22.07-.07.134-.167.22-.188.465-.119.513-.502.583-.798zm30.946 60.16a1.45 1.45 0 00-.146-.781c-.167-.35-.528-.42-.808-.162-.238.221-.48.437-.777.572-.356.167-.437.469-.42.825.037.652.916 1.418 1.628.884.458-.345.523-.787.523-1.338zM23.812 28.015c-.264-.048-.227.119-.151.259.286.54.286.54.82.286.08-.038.167-.065.248-.097.194-.076.178-.205.07-.335-.113-.14-.27-.107-.437-.124a2.378 2.378 0 00-.55.011zM49.02 74.81c-.016-.13-.091-.146-.172-.151a5.288 5.288 0 00-.507 0c-.13.005-.302-.065-.377.059-.097.146.086.248.134.377.054.146.151.157.275.103.232-.103.443-.248.648-.388zM77.497 5.519c.005 1.359-.194 2.701-.297 4.05-.075.965-.172 1.93-.243 2.895-.043.55.017.96-.075 1.505-.076.458-.264.884-.291 1.353-.011.15-.103.259-.232.345-.895.582-2.017 1.213-2.939 1.752-.41.243-.83.459-1.262.658-1.288.599-2.572 1.219-3.877 1.774-.544.232-1.073.486-1.623.701-1.445.572-2.83 1.29-4.324 1.737-.372.107-.755.215-1.014.49-.21.227-.404.47-.642.669-.663.56-1.342 1.11-2.113 1.51-1.176.604-2.233 1.407-3.365 2.076-.696.41-1.38.835-2.125 1.16-.285.123-.528-.028-.787-.017-.922.038-1.812-.13-2.593-.647-.351-.232-.61-.523-.734-.998-.517-1.936-.642-3.915-.82-5.893-.118-1.348-.15-2.691.033-4.028.102-.772.297-1.532.76-2.195.119-.167.2-.356.297-.54.043-.08.032-.156-.033-.22-.954-.88-.49-2.287.367-2.966.583-.464 1.165-.944 1.817-1.294.55-.297 1.138-.523 1.64-.906a.833.833 0 00.086-.08c-.389 0-.739.004-1.09 0-1.04-.012-2.086-.022-3.105-.238-.755-.157-1.343-.604-1.661-1.327-.34-.765.01-1.601.814-2.038.324-.178.658-.334.987-.496.07-.032.167-.038.124-.162-.318-.954.07-1.461.803-1.903.95-.572 1.947-1.04 3.112-.928.237.022.399.076.528-.334.049-.205.394-.399.56-.507.68-.464 1.252-.55 2.088-.426.857.13 1.73.151 2.599.216 1.375.102 2.717.388 4.07.62.858.151 1.732.21 2.578.388 1.37.286 2.745.566 4.077.987.987.313 1.984.604 2.965.927 1.327.437 2.626.944 3.937 1.43.302.113.55.247.82.377.118.06.194.183.188.318-.005.086-.005.167-.005.205zm-13.837-3.1c.221.113.443.237.669.34.496.22 1.03.366 1.467.722.059.048.15.086.145.178-.005.064-.07.075-.124.08-.356.038-.706.076-1.073.038-.62-.06-1.213-.242-1.85-.28-1.45-.081-2.89-.313-4.33-.48-1.428-.167-2.863-.21-4.297-.21-.733 0-1.467 0-2.2-.076-.669-.065-1.31.016-1.887.394-.13.086-.237.194-.21.345.032.156.123.296.302.35.15.049.301.027.452 0 .971-.161 1.936-.307 2.934-.318 1.488-.016 2.976-.032 4.465.022.808.032 1.623.021 2.426.08.69.055 1.386.14 2.065.281.61.13 1.197.35 1.796.534.248.075.485.189.695.345.087.065.151.15-.005.216-.264.113-.545.237-.83.2-.669-.098-1.338-.087-2.006-.098-1.661-.027-3.317-.135-4.972-.183-.733-.022-1.467.043-2.2.016-.97-.038-1.93 0-2.895.092-.993.097-1.93.485-2.94.474-.21 0-.404.167-.55.313-.274.27-.285.555-.042.782.302.28.636.523 1.078.56 1.817.152 3.64.195 5.462.092a.773.773 0 00.308-.086c.539-.302 1.116-.502 1.704-.653.943-.242 1.887-.506 2.863-.62 1.122-.129 2.243-.253 3.37-.312.221-.011.47-.033.685.097.2.118.237.232.064.42-.323.356-.722.507-1.191.529-.663.037-1.327.054-1.963.323-.696.297-1.445.415-2.173.61-1.04.28-2.06.609-3.068.986-1.505.561-3.03 1.063-4.27 2.146-.378.33-.864.502-1.236.847-.226.216-.425.431-.523.733-.053.173-.086.35.098.459.204.124.42.275.657.054a1.6 1.6 0 01.238-.178c.803-.496 1.693-.712 2.61-.869.506-.086 1.013-.312 1.53-.199.734.156 1.397-.027 2.028-.345 1.246-.626 2.567-.733 3.931-.658 1.666.092 3.295.41 4.913.782.452.108.91.216 1.358.345.415.119 1.025.529.917.944-.13.512-.205 1.04-.604 1.445-.264.264-.474.604-.776.792-.346.216-.723.367-1.046.642-.561.475-1.246.793-1.802 1.273-.84.728-1.73 1.39-2.572 2.113a3.548 3.548 0 00-1.024 1.435c-.189.49.048.9.544 1.03.556.15 1.084-.016 1.58-.194 1.435-.518 2.842-1.111 4.239-1.72 1.812-.788 3.634-1.548 5.392-2.449 1.37-.7 2.69-1.477 3.99-2.297.092-.06.151-.118.13-.237-.14-.766-.065-1.542-.06-2.313 0-1.073.081-2.152.097-3.225.016-1.003.016-2.006.157-3.003.097-.669.07-.739-.642-.782-.976-.06-1.92-.324-2.874-.496-.728-.135-1.434-.394-2.157-.577-1.715-.437-3.413-.922-5.144-1.289-.61-.113-1.208-.248-1.823-.313zm-4.076 15.049c0-.852-.124-1.682-.55-2.437-.324-.572-.809-1.009-1.278-1.445-.442-.416-.987-.68-1.59-.847-.502-.14-.982-.005-1.473-.032-.739-.038-1.467.08-2.168.296-.485.151-.986.286-1.434.566-.286.178-.61.324-.803.594-.367.517-.604 1.1-.755 1.714-.286 1.176-.302 2.373-.221 3.565.135 1.979.29 3.952.641 5.91.103.566.087.576.583.317 1.143-.603 2.313-1.159 3.408-1.833a29.982 29.982 0 003.925-2.868c1.09-.939 1.72-2.055 1.715-3.5zm-2.028-5.387c.275-.01.286.259.432.383.544.474 1.202.777 1.79 1.18 1.003.697 1.979 1.43 2.815 2.32.145.15.231.075.334-.017.361-.323.787-.56 1.176-.852.808-.598 1.898-.808 2.453-1.768.108-.184.264-.35.232-.566-.038-.221-.275-.173-.426-.205-1.014-.221-2.028-.48-3.052-.653-1.596-.275-3.209-.345-4.826-.329-.178 0-.318.076-.47.173-.14.102-.226.296-.458.334zm1.969-10.39c-.356-.179-.75-.055-1.106-.205-.334-.146-.69-.173-1.057-.162-.264.005-.528.037-.787-.054a3.75 3.75 0 00-1.655-.194c-.205.021-.416.032-.604.145-.033.022-.022.07.016.07 1.742.054 3.472.221 5.193.4z"
|
|
14
|
+
fill={fill}
|
|
15
|
+
/>
|
|
16
|
+
<Path
|
|
17
|
+
d="M56.235 58.217c-.091.334-.528 2.038-.539 2.092-.21 1.316-.685 2.55-1.175 3.785a10.023 10.023 0 01-1.43 2.519c-.776.98-1.779 1.574-3.014 1.773-.463.076-.857-.183-1.272-.334-.334-.118-.41-.431-.615-.636-1.429-1.418-2.405-3.041-2.426-5.139-.011-1.105.07-2.232-.26-3.316a10.027 10.027 0 00-2.318-3.99c-.582-.62-1.348-.577-2.065-.33-.863.297-1.699.675-2.48 1.155-.933.571-1.92 1.008-2.993 1.235-.62.129-1.251.145-1.871.156-.55.01-1.009-.345-1.51-.54-1.219-.485-2.017-1.417-2.68-2.507-.62-1.013-1.046-2.103-1.391-3.23-.308-.992-.556-2.005-.637-3.04-.064-.837.098-1.64.426-2.416.567-1.322 1.521-2.314 2.573-3.252 1.003-.89 2.194-1.483 3.267-2.254.89-.642 1.871-1.121 2.858-1.585a32.867 32.867 0 014.858-1.817c.34-.097.685-.092 1.025-.157.092-.016.14.054.205.103.243.167.442.383.669.577.253.215.544.334.91.312.971-.059 1.748.372 2.406 1.041.55.556 1.116 1.095 1.628 1.682.938 1.068 2.114 1.343 3.473 1.181.868-.102 1.768-.08 2.523.416.771.506 1.348 1.202 1.548 2.151.156.744.35 1.483.49 2.232.081.437.092.89.135 1.338.178 1.73.27 3.467.297 5.209.048 1.935-.626 5.667-.615 5.586zM57.06 17.134c.043.657-.189 1.267-.55 1.741-.436.572-1.078.939-1.817 1.063-.992.167-1.688-.313-2.313-1.003-.599-.658-.653-1.418-.442-2.211.118-.464.469-.814.835-1.1.545-.42 1.154-.696 1.877-.523.102.021.194.038.226.15.038.12-.048.179-.107.254-.216.297-.577.35-.863.518-.092.054-.61.447-.701.577-.232.323-.405 1.143-.07 1.607.285.393.9.577 1.423.48 1.117-.21 1.472-1.219 1.257-1.963-.06-.2-.14-.4-.324-.512-.189-.114-.34-.21-.323-.464.021-.41.312-.442.609-.442.399 0 .695.189.906.528.237.405.464.804.377 1.3z"
|
|
18
|
+
fill={fill}
|
|
19
|
+
/>
|
|
20
|
+
</BaseSvg>
|
|
21
|
+
);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export default FreedomSketch;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import type { IllustrationSvgProps } from '../types';
|
|
4
|
+
import BaseSvg from '../BaseSvg';
|
|
5
|
+
import useMonoColor from '../hooks/useMonoColor';
|
|
6
|
+
|
|
7
|
+
const GrowingSketch = ({ testID, width, height }: IllustrationSvgProps) => {
|
|
8
|
+
const { fill } = useMonoColor();
|
|
9
|
+
|
|
10
|
+
return (
|
|
11
|
+
<BaseSvg width={width} height={height} testID={testID} viewBox="0 0 125 96">
|
|
12
|
+
<Path
|
|
13
|
+
d="M25.837 44.707v-3.282c0-1.28-.049-2.559.012-3.832.056-1.243.166-2.492.368-3.723a56.06 56.06 0 011.567-6.814c.49-1.665.937-3.343 1.55-4.972.036-.091 2.228-5.448 3.415-7.016.392-.52.784-1.034 1.17-1.549.477-.643.949-1.292 1.384-1.965.948-1.463 2.185-2.651 3.459-3.814.936-.857 1.971-1.58 3.042-2.272a40.528 40.528 0 013.704-2.155c.65-.33 1.317-.636 1.96-.973.685-.361 1.438-.539 2.198-.698 1.493-.318 3.012-.49 4.493-.888 1.274-.343 2.59-.428 3.913-.502 1.285-.073 2.565-.19 3.85-.245.692-.03 1.397.043 2.094.092.747.049 1.494.104 2.241.184A20.77 20.77 0 0169.6.919c.312.086.637.129.955.178.82.122 1.653.245 2.394.612 1.537.753 3.129 1.402 4.573 2.345.698.453 1.36.955 2.064 1.408.924.594 1.757 1.298 2.546 2.064.276.263.607.477.907.716.073.061 1.371 1.708 1.604 2.026 1.016 1.378 2.008 2.774 2.853 4.274.496.875.87 1.806 1.347 2.688.385.71.642 1.463.955 2.191.232.545.612 1.023.87 1.568.385.832.685 1.69.991 2.553.275.777.44 1.604.808 2.32a5.55 5.55 0 01.539 1.64c.14.87.355 1.727.55 2.585.197.869.393 1.744.582 2.614.037.171.092.337.11.508.031.288.386 2.026.43 2.388.165 1.255.312 2.516.422 3.777.171 1.96.349 3.918.288 5.896-.05 1.53-.062 3.061-.135 4.586-.05 1.053-.263 2.087-.46 3.122-.122.661-.097 1.335-.226 1.996-.153.796-.349 1.586-.526 2.375-.472 2.107-1.188 4.133-1.898 6.166-.086.245-1.378 3.269-2.1 4.463-.558.93-1.09 1.88-1.69 2.78a35.238 35.238 0 01-3.533 4.45c-1.15 1.231-2.363 2.394-3.496 3.637-.128.14-1.506 1.427-2.044 1.843-.76.588-1.525 1.17-2.32 1.714-.209.147-.405.306-.613.453-.147.104-.147.208-.067.361.208.398.495.741.722 1.12.104.178.239.197.41.087.588-.392 1.176-.79 1.751-1.207.416-.3.827-.618 1.292-.85.19-.092.349-.013.514.085.508.288.84.76 1.225 1.176.239.263.453.538.728.771.22.184.258.71.08.98-.165.25-.533.318-.851.153a1.827 1.827 0 01-.576-.484c-.269-.343-.569-.661-.85-.992-.141-.165-.221.012-.3.068-1.017.777-2.125 1.408-3.203 2.087-.208.135-.453.24-.68.098-.41-.14-.538-.728-.501-.875.018-.08-.013-.16-.061-.233-.227-.361-.466-.716-.686-1.084-.11-.183-.202-.165-.306-.006-.453.698-1.12 1.194-1.708 1.77-.251.25-.766.202-1.029-.061-.49-.478-.9-1.017-1.292-1.574-.239-.337-.263-.318-.594-.086-.447.319-.759.784-1.224 1.09a.649.649 0 00-.184.202c-.27.453-.771.539-1.194.22-.428-.324-.722-.765-1.077-1.157-.276-.306-.361-.306-.674-.06-.275.22-.581.41-.863.624a2.57 2.57 0 00-.404.367c-.643.747-1.304.496-1.72-.116a5.287 5.287 0 00-.557-.723c-.135-.14-.24-.134-.337.025-.178.287-.766.759-.839.845-.092.11-.196.208-.276.318-.171.251-.41.257-.624.122-.135-.085-.27-.03-.404-.091-.71-.325-.906-1.029-1.225-1.641-.024-.043-.006-.123.013-.178.134-.428.808-.606 1.126-.294.153.147.355.227.49.404.086.11.165.007.214-.067.123-.165.245-.324.35-.496.311-.532.887-.734 1.358-1.065 1.323-.93 2.67-1.837 3.919-2.865 1.194-.986 4.457-4.14 4.959-4.653a36.878 36.878 0 002.473-2.798c.478-.606.95-1.212 1.372-1.855.722-1.078 1.322-2.229 2.008-3.331.502-.808.937-1.647 1.34-2.498.276-.581.448-1.218.674-1.824.251-.686.514-1.366.722-2.064.233-.777.527-1.536.705-2.338.165-.741.373-1.476.514-2.217.177-.936.453-1.86.46-2.834 0-.35.115-.735.195-1.096.11-.515.129-1.053.184-1.586.049-.471.091-.949.14-1.42a24.53 24.53 0 00.098-3.423 72.151 72.151 0 01-.049-2.302c0-.796-.14-1.573-.202-2.363-.049-.655-.122-1.31-.159-1.971-.037-.723-.183-1.427-.25-2.143a25.907 25.907 0 00-.423-2.737c-.239-1.15-.514-2.296-.753-3.453-.215-1.047-.435-2.088-.735-3.11-.3-1.01-.618-2.014-.992-3.006-.196-.52-.361-1.06-.539-1.586-.012-.03-.012-.061-.024-.086-.398-.575-.52-1.255-.76-1.891-.146-.392-.777-1.592-.893-1.813-.276-.52-2.204-3.624-2.327-3.924-.208-.502-2.136-3.343-2.65-4.175-.27-.441-1.317-1.635-1.519-1.837a22.353 22.353 0 00-3.147-2.633c-.943-.655-1.867-1.328-2.865-1.898-.46-.263-.925-.514-1.414-.71-.3-.122-.594-.27-.864-.44-.508-.325-3.324-.797-4.065-.809-1.102-.024-2.204.104-3.3.233-.967.116-1.94.122-2.902.324-.532.117-1.084.178-1.61.319-.337.091-.655.269-.974.422-.581.282-4.15 2.265-4.867 2.565-.496.208-2.308 1.47-2.492 1.635-.391.367-.783.74-1.212 1.071-.759.588-1.371 1.317-2.014 2.015-.343.367-.704.716-1.004 1.126-.545.74-1.072 1.494-1.635 2.223-.6.777-2.143 3.38-2.277 3.759-.153.434-.955 2.198-1.182 2.657-.122.245-.178.508-.294.753-.465.986-.79 2.02-1.096 3.061-.263.9-.514 1.8-.826 2.682-.233.655-.325 1.334-.49 1.996a57.67 57.67 0 01-.49 1.769c-.159.539-.196 1.096-.324 1.635-.343 1.493-.429 3.03-.54 4.555-.079 1.04-.024 2.094-.017 3.134 0 .986-.031 1.966.049 2.951.036.508-.037 1.029-.031 1.543.006.93.073 1.861.177 2.786.105.986.313 1.953.368 2.945.049.875.386 1.696.532 2.553.086.49.306.955.325 1.45.012.435.067.858.153 1.286.012.056.024.135-.049.16-.073.03-.104-.043-.135-.092-.104-.172-.202-.343-.306-.514-.226.146-.453.287-.673.44a1.075 1.075 0 00-.233.239c-.086.104-.16.245-.306.22-.147-.03-.092-.202-.122-.312-.276-.87-.478-1.763-.692-2.65-.386-1.599-.564-3.233-.784-4.862-.184-1.402-.257-2.786-.337-4.17zm63.869-18.68c.098-.006.202-.012.3-.024.361-.043.349-.043.257-.386-.184-.667-.453-1.304-.673-1.953-.154-.447-.251-.912-.564-1.304-.116-.147-.177-.349-.208-.563-.067-.466-.288-.894-.471-1.323-.055-.128-.16-.19-.313-.183-.685.012-1.37.006-2.057.006-.685 0-1.371-.025-2.063-.006-.686.018-1.371-.025-2.063.012-.845.043-1.696-.08-2.54-.05-.32.013-.356.056-.215.338.324.655.581 1.334.832 2.02.386 1.065.778 2.13 1.09 3.226.068.24.215.356.472.319.171-.025.343-.061.514-.05.9.062 1.8-.054 2.7-.054 1.66 0 3.33.049 5.002-.025zm3.055 10.537c-.012-.325-.073-.643-.129-.967-.042-.258-.196-.435-.434-.355-.404.134-1.708.091-1.96.085h-.06c-.515 0-2.1.098-2.444.092-.777 0-1.555-.037-2.332-.055-.067 0-1.47.055-1.8.196-.276.116-.312.263-.276.539.141.992.276 1.99.343 2.994.013.14.068 1.022.092 1.181.019.16.104.233.282.245.57.043 1.12-.104 1.702-.037.71.08 1.438.025 2.16.019.313-.006.625-.043.938-.062.41-.024 3.924-.22 4.157-.177.38.073.061-1.176.043-1.488-.025-.373-.086-.747-.135-1.12-.025-.16-.14-.913-.147-1.09zM80.939 18.73c.373-.05 1.047-.013 1.714-.013 1.482 0 2.963.037 4.439 0 .08 0 .177.043.226-.037.061-.091-.018-.17-.061-.25-.135-.233-.38-.362-.545-.57-.514-.655-.747-1.457-1.157-2.167-.196-.337-.337-.71-.472-1.084-.116-.33-.208-.349-.495-.196-.215.117-.441.202-.68.257-.698.172-1.408.104-2.112.153-.557.037-1.108-.098-1.666-.024-.606.08-1.212 0-1.818.012-.606.012-1.212-.018-1.818-.037-.215-.006-.215.098-.129.251.11.202.245.398.337.613.41.949.888 1.86 1.377 2.767.154.282.337.392.656.355.63-.067 1.273-.012 2.204-.03zm-7.684-8.48c.619.888 1.23 1.739 1.812 2.62.178.27.355.41.686.374 1.035-.117 2.07-.043 3.104-.055 1.022-.006 2.045.043 3.067.018.643-.012 1.274-.006 1.898.147.16.043.325.067.545.11-.214-.3-.471-.484-.643-.747a51.03 51.03 0 01-1.236-1.983c-.202-.355-.472-.545-.931-.545-1.34-.012-2.675.073-4.016.061-1.42-.006-2.835 0-4.286 0zm-4.959-4.733c.312.227.588.417.851.613.833.618 1.512 1.408 2.363 2.008.196.14.374.208.612.19.558-.037 1.115-.074 1.672-.074 1.904-.006 3.814 0 5.718-.006.16 0 .416.073.447-.049.05-.171-.19-.276-.33-.386-.864-.692-1.782-1.31-2.676-1.959-.343-.25-.704-.428-1.17-.416-1.457.03-2.914.018-4.37.006-.809-.006-1.617.067-2.425.018-.208-.006-.441-.055-.692.055zm5.455-1.457c-.416-.232-.82-.471-1.243-.685-.588-.294-1.15-.692-1.873-.551-.117.024-.245-.007-.362-.025-.863-.122-1.726-.226-2.583-.38-1.42-.257-2.86-.281-4.298-.38-.318-.018-.637-.005-1.029-.005.227.22.429.312.631.392.93.36 1.794.85 2.657 1.34.245.135.46.337.772.337.648-.006 1.297.018 1.946-.012.496-.025.992.03 1.488 0 .747-.05 1.494-.025 2.247-.03h1.647zm19.665 40.99c-.037-.062-.061-.294-.16-.264-.569.19-3.728 1.268-3.966 1.286-.3.024-.827.263-1.072.355-.52.19-1.071.227-1.573.435-.202.08-1.917.514-2.112.667-.362.282-.558.233-.637.655-.05.257.024.355.287.35a76.622 76.622 0 011.678-.013c.08 0 .147-.037.22-.074.41-.195.827-.281 1.427-.538.827-.319 2.088-.93 2.804-1.206.76-.288 1.518-.527 2.284-.937.018.006.875-.129.82-.716zm-8.773 1.377c.159.178.324.098.538.061.509-.085.919-.349 1.433-.483.092-.007.257-.11.386-.172.177-.08 1.892-.704 2.039-.777.465-.233 3.82-1.041 4.09-1.096.33-.074.422-.282.281-.784-.086-.312-.233-.165-.373-.147-.147.012-.3.178-.435.22-.943.288-3.386 1.207-3.441 1.237-.41.215-2.84 1.108-2.92 1.164-.227.147-.49.153-.735.238-.3.104-.649.141-.863.54zm4.69 1.94c-.08.038-.05.154.036.154h1.598c.061 0 .117-.03.172-.049.612-.202 1.224-.422 1.842-.612.472-.147.631-.423.502-.906-.03-.117-.073-.153-.19-.105-.563.22-.991.325-1.481.509-.833.306-1.665.612-2.48 1.01zm-.374-15.011c.998 0 2.002 0 3 .006.171 0 .239-.08.196-.251a22.838 22.838 0 01-.19-.888c-.037-.202-.257-1.102-.257-1.206 0 0-.202-.998-.245-1.163-.14-.551-.226-1.114-.41-1.653-.025-.08-.037-.166-.147-.166-.57-.018-1.139-.055-1.708-.012-.117.012-1.072.019-1.445.006-.943-.03-1.88-.036-2.823-.03-.508.006-1.01 0-1.518-.019-.477-.018-.949-.067-1.426-.08-.331-.005-.368.056-.282.38.147.6.318 1.2.435 1.806.22 1.133.545 2.247.734 3.386.019.123.062.172.209.11.96.031 5.853-.226 5.877-.226zm-.08 9.349c.117-.043.092-.215-.03-.227-.27-.024-.52-.03-.76.05-.63.213-1.248.452-1.824.795-.061.037-.128.074-.11.16.018.079.073.122.153.122.275-.006 1.17-.435 1.316-.484.104-.037.753-.227 1.255-.416z"
|
|
14
|
+
fill={fill}
|
|
15
|
+
/>
|
|
16
|
+
<Path
|
|
17
|
+
d="M45.135 75.208l1.629-.171c1.322-.135 2.638-.276 3.96-.404.227-.025.46.012.693.03.342.025.502.331.704.54.349.354.71.697 1.022 1.083.325.398.276.508.153 1.004-.135.563-.52.655-.955.722-.82.129-1.647.233-2.467.343-.76.098-1.335-.722-1.06-1.396.025-.067.037-.134.062-.202.226-.544.19-.459-.35-.447-.575.013-1.144.129-1.72.184-.746.074-1.481.22-2.234.227-.251 0-.496.098-.735.128-.294.043-.612.178-.924.019-.135-.068-.19-.172-.251-.288-.031-.067-.074-.245-.178-.025-.061.117-.14 0-.19-.043a12.664 12.664 0 01-1.212-.998c-.496-.465-1.004-.912-1.512-1.359a7.446 7.446 0 01-.894-.918c-.178-.22-.178-.52-.16-.79.05-1.022.038-2.05.19-3.061.043-.294.019-.606.19-.882.037-.06.043-.147-.024-.19-.061-.042-.117.013-.16.056-.165.147-.36.183-.569.171a14.73 14.73 0 01-2.259-.3c-.937-.208-1.69-.74-2.424-1.335-.484-.385-.858-.857-1.237-1.334-.092-.117-.147-.33-.367-.22a.532.532 0 00-.313.544c.123 1.09.141 2.18.196 3.27.055 1.132.166 2.259.233 3.391.024.484.055.974.086 1.457.042.582.104 1.17.159 1.758.098 1.071.165 2.142.27 3.214.164 1.726.195 3.465.47 5.18.044.257-.03.502-.054.752-.019.153.024.258.098.392.434.76 1.157 1.206 1.8 1.751.214.184.44.361.563.625.263.57.134 1.022-.355 1.408-.692.545-1.482.582-2.302.508-.441-.043-.87-.14-1.292-.275-.343-.11-.692-.074-1.041-.092-.38-.019-1.433-.068-1.592-.08-.355-.03-2.785-.337-3.024-.373-.343-.055-.717 0-1.078-.013-.27-.012-.545.007-.82.013-.19 0-.447-.098-.496.232-.006.025-.067.043-.104.056-.729.244-1.463.373-2.241.3-.478-.05-.967.042-1.451.067-.276.012-1.782-.055-1.94-.086-.209-.037-2.107-.177-2.168-.208a1.15 1.15 0 00-.723-.135c-.38.05-.722-.134-1.095-.159a7.721 7.721 0 00-1.409.018c-.196.025-.36.007-.495-.147-.043-.049-.074-.104-.025-.165.129-.159.3-.275.502-.239.784.135 1.549-.055 2.308-.165 1.157-.165 2.32-.257 3.478-.343.306-.018.593-.147.906-.11.11.012.177-.086.214-.19.08-.25.196-.483.214-.759.013-.214.05-.428.123-.63.27-.735.318-1.5.422-2.266.061-.453.184-.894.3-1.334.202-.76.22-1.543.313-2.315.159-1.34.36-2.67.618-3.991.324-1.696.765-3.362 1.243-5.015.275-.961.569-1.922.881-2.871.153-.478.429-.912.515-1.445.006-.018-.019-.037-.037-.03-.527.134-2.425 1.99-2.468 2.044-.538.698-1.255 1.188-2.002 1.629-.232.134-.477.263-.765.27a.245.245 0 00-.159.06c-.27.251-.594.257-.918.172-.184-.05-.294 0-.386.135-.233.33-.551.544-.918.71-.043.018-.117.055-.117.085 0 .24-.165.313-.349.337-.281.043-.575.092-.832-.061-.355-.202-.404-.753-.123-1.163.08-.123.202-.196.3-.3.367-.386.686-.827 1.139-1.127.196-.135.245-.361.257-.557.018-.282.172-.477.319-.667 1.114-1.433 2.559-2.541 3.783-3.864.496-.532.967-1.09 1.47-1.622.636-.68 1.365-1.273 2.063-1.892.918-.808 2.032-1.249 3.165-1.647.373-.128.777-.128 1.175-.091.337.03.404-.019.319-.337a1.708 1.708 0 01.012-.962c.16-.49.545-.777 1.047-.863.465-.08.882-.25 1.31-.447.986-.447 1.427.006 1.629.98.03.16-.068.312-.19.435a.777.777 0 00-.245.532c-.018.245-.08.49-.251.704-.153.184-.122.447-.165.674-.019.092.073.147.165.14.545-.06.937.282 1.286.582.74.637 1.224 1.47 1.665 2.333.288.57.643 1.102 1.023 1.616.067.092.153.16.275.172.686.073 1.304.38 1.953.569.416.122.814.312 1.218.465.41.16.9.104 1.347.196.453.092.876.08 1.31-.08.766-.275 1.409.031 2.015.466.177.129.343.288.465.484.429.704 1.163 1.071 1.745 1.616.288.27.588.52.93.728.22.135.252.435.11.662-.018.03-.048.08-.036.11.135.68-.367 1.188-.526 1.763-.245.9-.662 1.739-1.188 2.51-.22.27-.3.527-.435.857zm-18.349-.728a2.11 2.11 0 00-.183.594 3.986 3.986 0 01-.105.538c-.201.796-.416 1.586-.606 2.388-.25 1.047-.465 2.1-.777 3.129-.447 1.481-.967 2.945-1.31 4.463-.031.14-.08.276-.123.41-.043.129-.147.16-.263.165-.135.013-.135-.091-.153-.183-.018-.11-.055-.165-.184-.098-.428.245-.9.275-1.383.239a3.257 3.257 0 00-.845.012c-.19.037-.264.11-.27.294-.024.416-.043.863-.14 1.243-.13.508.19.41.397.465.264.067.54.073.815.116.728.098 1.126-.19 1.236-.906.019-.11.037-.22.062-.33.049-.209.177-.362.336-.49.166-.135.294-.123.429.06.288.387.386.858.3 1.274-.092.435.03.515.392.515.018 0 .037.018.055.018.263.043.581.049.753-.098.386-.33.85-.398 1.304-.508.563-.14 1.151-.061 1.727-.068.716-.006.728-.006.544-.691-.477-1.782-.881-3.576-1.102-5.406-.147-1.207-.324-2.406-.459-3.613-.098-.869-.153-1.757-.337-2.614-.067-.281.037-.581-.11-.918zm.019-11.81c.122.049-.429 2.443-.404 2.602-.043.734-.515 1.347 1.463 1.359.587.11 1.17-.006 1.745-.116.14-.025.208-.117.263-.227a65.1 65.1 0 001.396-3.135c.208-.508.226-1.096.624-1.524.086-.092.11-.233-.036-.312-.203-.11-.3-.294-.405-.478-.042-.085-.098-.214-.226-.14-.257.146-.545.134-.827.183-.269.049-.808-.325-.857-.245-.122.208-.3.117-.465.104-.428-.03-.845-.085-1.273.074-.888.33-1.819.557-2.596 1.15-.264.203-.484.466-.741.668a8.57 8.57 0 00-1.427 1.439c-.459.581-.98 1.09-1.487 1.622-.282.294-.57.594-.833.906-.27.313-.563.6-.845.888-.729.74-1.622 1.31-2.247 2.155-.037.055-.134.086-.067.172.049.067.128.055.196.024.257-.116.532-.202.777-.349a16.902 16.902 0 002.835-2.186 80.854 80.854 0 011.684-1.542c.845-.754 1.677-1.519 2.393-2.4.282-.343.588-.668.9-.986.098-.104.245-.214.41-.123.197.098.044.264.05.417zm6.349 25.806c.25-.05.502-.074.746-.147.16-.05.398-.062.441-.22.05-.184-.19-.264-.306-.38a2.168 2.168 0 00-.257-.215c-.667-.502-1.31-1.028-1.665-1.818-.08-.177-.172-.214-.355-.16a2.822 2.822 0 01-1.966-.085c-.055-.024-.134-.055-.171-.037-.08.043-.018.129-.006.19.098.478.275.937.3 1.427.012.25.128.367.349.422.398.098.765.27 1.126.453.557.294 1.115.557 1.764.57zM39.82 71.35c.092-.073.135-.11.184-.147.66-.55 1.316-1.108 1.983-1.647a87.483 87.483 0 011.892-1.475c.147-.11.122-.202.037-.33-.153-.24-.386-.38-.6-.552-.141-.116-.313-.3-.472-.214-.14.08-.361.288-.361.386-.006.312-.208.226-.355.25-.3.044-.551.154-.74.417-.123.178-.295.319-.442.478-.232.245-.514.44-.894.33-.208-.061-.269.05-.263.245.037.68.037 1.353 0 2.033 0 .055.019.11.03.226zm-3.68-4.273c.098.098.202.104.306.11.606.03 1.2.14 1.794.263.172.037.355.245.496.117.11-.104.104-.337.153-.508.006-.031.019-.062.025-.086.043-.245-.05-.398-.3-.429a4.472 4.472 0 01-.741-.171c-.594-.184-1.139-.478-1.745-.625a1.517 1.517 0 01-.87-.581c-.385-.52-.924-.919-1.242-1.488-.03-.049-.068-.11-.141-.086a.14.14 0 00-.08.153c.05.233-.373 2.008 1.237 2.725.086.037.172.177.263.11.27-.196.545-.098.82-.061.325.049.356.134.172.41a1.679 1.679 0 00-.147.147zM29.91 59.13c.024.14.043.282.067.416.037.166.08.337.288.337.214 0 .398-.086.477-.306.074-.214.086-.435.068-.661-.007-.074-.025-.172-.092-.178-.196-.03-.374-.177-.576-.092-.202.086-.245.27-.232.484zm11.344 8.143c-.3-.257-.63-.392-1.01-.41-.073-.007-.159-.025-.183.06a.742.742 0 00.018.448c.03.08.128.098.214.073.313-.08.637-.043.961-.171zM51.019 62.21c-1.084.013-2.125-.17-3.117-.6-.165-.067-.25-.054-.33.117a70.594 70.594 0 01-.876 1.77c-.202.373-.312.691-.563 1.022-.116.153-.178.3-.306.447-.043.049-.35.214-.435.165-.22-.018-.19-.337-.19-.398.025-.967.447-1.745.772-2.645.135-.38.239-.777.422-1.139.05-.091.068-.177-.03-.269a12.754 12.754 0 01-1.898-2.198c-.374-.533-1.519-2.981-1.623-3.288-.753-2.143-1.059-4.347-.87-6.618.044-.533.032-1.065.172-1.598.257-.961 1.427-1.64 2.376-1.365.483.14.802.477 1.028.894.251.459.41.955.582 1.457.373 1.114.465 2.284.833 3.392.447 1.359.912 2.712 1.426 4.047.025.06.03.159.11.165.098.006.129-.098.16-.165.165-.38.312-.772.477-1.151l2.737-6.41c.532-1.25 1.065-2.505 1.604-3.748.08-.183.08-.336-.043-.514-.52-.753-1.029-1.506-1.482-2.296-.147-.25-.208-.545-.349-.808-.459-.839-.783-1.745-1.071-2.645-.325-1.028-.539-2.087-.527-3.19.013-.655-.024-1.316.031-1.97a12.93 12.93 0 01.643-3.087c.318-.96.912-1.732 1.592-2.455 2.142-2.442 4.977-3.012 5.363-3.042 1.322-.11 2.553.263 3.759.74.208.08.3.055.386-.165.312-.857.728-1.671 1.083-2.51.258-.606.57-1.182.876-1.763.153-.3.557-.484.839-.368.134.055.349.594.294.753-.362 1.164-.84 2.284-1.323 3.398-.196.453-.38.919-.582 1.372-.073.165-.006.263.117.367.398.33.814.643 1.181 1.01.882.888 1.666 1.843 2.131 3.037.33.845.655 1.684.87 2.565.134.551.232 1.12.257 1.684.024.686.14 1.371.085 2.063-.061.82-.11 1.64-.538 2.382-.166.281-.35.55-.6.753-.38.3-.796.134-1.182-.006-.208-.074-.778-.557-1.01-.968-.16-.281-.178-.624-.215-.943-.257-2.338-.66-4.64-1.585-6.826-.208-.496-.423-.986-.723-1.439-.055-.08-.098-.202-.214-.19-.11.013-.098.141-.129.22-.245.582-.532 1.14-.771 1.721-.337.827-.674 1.653-1.029 2.474-.293.68-.624 1.347-.869 2.038-.294.845-.728 1.629-1.035 2.468-.128.367-.318.722-.496 1.077a.84.84 0 00-.006.79c.417.894.864 1.77 1.225 2.682.398 1.004.93 1.965 1.09 3.055.153 1.022.33 2.045.306 3.08-.03 1.236-.092 2.479-.361 3.691-.209.95-1.048 3.955-1.237 4.518-.215.631-1.457 3.282-2.474 3.655-.477.398-.985.747-1.555.986-.74.306-1.481.63-2.296.668-.3.024-.593.042-.887.055zm3.447-16.634c-.215.484-.423.9-.582 1.335-.484 1.328-1.12 2.596-1.629 3.912-.324.851-.71 1.678-1.059 2.516-.27.65-.514 1.317-.79 1.966-.269.636-.55 1.26-.838 1.891-.062.135-.043.24.055.355.343.429.734.815 1.15 1.164.503.422.98.881 1.592 1.163.24.11.392.227.582.422.123.129.35.013.484-.036.471-.196.924-.453 1.255-.845.9-1.084 1.684-2.235 1.977-3.655.098-.472.141-.943.178-1.42.067-.895.086-1.788-.074-2.67-.404-2.137-1.328-4.09-2.302-6.098zm1.738-7.983c.361-.698.619-1.378.9-2.052.368-.887.79-1.757 1.151-2.644.674-1.629 1.347-3.264 2.076-4.868.116-.263.128-.471-.123-.667-.239-.19-.453-.404-.68-.612-.373-.343-.801-.594-1.297-.704-.27-.061-.545-.196-.827-.025-1.322.796-2.063 2.02-2.424 3.465-.41 1.623-.153 3.245.183 4.856.105.508.374.955.417 1.506.043.575.337 1.138.624 1.745zM45.655 51.919c-.263.294-.343.63-.453.943-.128.367-.722 1.543-.618 1.86.061.185.104.368.184.546.08.177.165.349.22.532.055.178.288.705.386.876.006.006.006.018.012.03.08.117.171.227.245.356.355.643.814 1.206 1.273 1.769.196.245.22.233.343-.049.184-.428.282-.894.502-1.304.08-.153.006-.276-.067-.398a9.045 9.045 0 01-.594-1.163c-.428-1.01-.74-2.063-1.102-3.098-.104-.282-.214-.57-.33-.9zM56.278 41.37c-.03.043-.055.074-.068.11-.257.57-.526 1.139-.765 1.72a.706.706 0 00.037.625c.14.257.288.508.416.765.398.809.765 1.635 1.163 2.443.38.765.735 1.537.974 2.357.024.074.018.178.122.215.27-2.957-.508-5.657-1.88-8.235zm9.196-3.686c0 .056.08.074.104.025.147-.245.275-.496.318-.784.129-.85.19-1.702.104-2.565-.104-1.072-.208-2.137-.576-3.16-.042-.122-.048-.318-.177-.33-.153-.018-.76.839-.606 1.323.171.538.46 1.457.532 2.02.092.71.24 1.414.24 2.143-.007.44.036.881.06 1.328zM51.398 60.84c-.906-.57-1.573-1.28-2.29-1.928-.14-.129-.22-.123-.293.042-.129.276-.258.551-.38.827-.16.373-.11.447.27.637.826.422 1.714.41 2.693.422zm1.965-24.122c.05-.171-.018-.257-.146-.288-.098-.024-.215.019-.294.11-.288.337-.515.71-.594 1.145-.037.215.043.478.232.527.203.055.264-.153.264-.245-.013-.373.196-.637.385-.912.068-.098.098-.215.154-.337zM44.958 48.95a.12.12 0 00-.208-.074c-.263.27-.453.57-.624.888-.166.306-.288.643-.416.967-.037.092-.074.251.048.3.105.037.16-.104.203-.184.312-.544.618-1.09.924-1.634a.421.421 0 00.073-.264zm8.131-14.253c-.16-.037-.398.165-.496.355a1.844 1.844 0 01-.147.232c-.312.404-.581.82-.392 1.317.037.092.16.092.196.006.22-.502.802-1.28.974-1.396.128-.086.08-.429-.135-.514zm-.03 4.842c.012.055.091.062.11.007.104-.313.36-.551.477-.852.104-.269.129-.495.055-.759-.018-.055-.024-.134-.11-.11-.067.018-.098.092-.086.147.135.44-.14.79-.349 1.096a.534.534 0 00-.098.471zm1.358.105c.013-.037-.024-.074-.06-.056-.246.11-.49.68-.546.76-.06.091-.147.171-.19.275-.079.184.013.386.154.447.159.067.159-.147.196-.263.055-.147.342-.894.447-1.163zm-.055-2.143c-.018-.006-.006.012-.018.03-.147.264-.294.851-.447 1.06-.055.073.006.19.074.238.08.055.159-.024.202-.086.159-.269.324-.538.465-.82.086-.171-.025-.349-.276-.422z"
|
|
18
|
+
fill={fill}
|
|
19
|
+
/>
|
|
20
|
+
<Path
|
|
21
|
+
d="M12.099 82.965c.33.306.532.606.667.968a.763.763 0 01-.092.747c-.367.545-.912.728-1.549.698-.93-.05-1.83-.233-2.65-.692-.013-.006-.038.006-.074.012.073.667.281 1.298.41 1.953.11.563.275 1.12.343 1.696.03.257.122.508.19.765a.893.893 0 01-.092.65c-.019.036-.043.067-.061.103-.062.129.042.362-.215.362-.245 0-.471-.056-.661-.233-.367-.343-.429-.814-.551-1.261-.263-.95-.539-1.886-.735-2.853-.073-.35-.153-.692-.226-1.041-.061-.27-.135-.306-.374-.153-.783.514-1.634.9-2.522 1.194-.423.14-.974-.006-1.225-.313-.367-.446-.44-.985-.177-1.432.092-.153.14-.319.288-.453.122-.104-.062-.147-.153-.16-.24-.03-.484-.042-.729-.073-.845-.122-1.488-.612-1.64-1.396-.062-.312.018-.563.262-.728.692-.472 1.42-.87 2.302-.845.08 0 .178.012.215-.074.043-.098-.03-.177-.104-.232-.294-.233-.319-.533-.202-.851.091-.251.447-.423.777-.41 1.078.048 2.07.336 2.945.985.129.098.245.068.355-.03.165-.147.325-.307.502-.441.9-.674 1.886-1.053 3.03-.851.846.147 1.078.404 1.152 1.292.012.153.092.19.214.19.576.011 1.078.232 1.555.544.465.3.637.741.71 1.25.007.054.062.213.025.25-.05.557-.153 1.096-1.91.863zm.514-1.457c-.318-.226-.692-.25-1.035-.263-.214-.006-.447.11-.68.14-.44.068-.85.3-1.273.472-.122.05-.128.172-.11.288.03.147.14.104.239.098.771-.067 1.512-.251 2.259-.44.208-.05.41-.117.6-.295zm-5.933.717c.643.012.857-.037 1.133-.245.086-.062.19-.147.055-.233-.257-.165-.582-.214-.802-.46-.018-.018-.08-.011-.116-.005a2.465 2.465 0 00-.968.337c-.122.08-.202.201-.159.36.043.154.16.233.312.246.184.006.362 0 .545 0zm2.186 1.285c.71.484 1.482.655 2.327.502.073-.012.183-.024.183-.128 0-.098-.104-.117-.171-.147-.753-.276-1.543-.276-2.339-.227zm-.76-2.614c.038 0 .08.012.111 0 .6-.227 1.145-.551 1.678-.9.134-.086.03-.147-.05-.196-.097-.055-.201-.018-.293.012-.594.196-.992.662-1.457 1.041 0 .006.006.025.012.043zm-5.4 1.218l.705-.091c.27-.037.539-.086.796-.184.055-.019.122-.037.122-.11 0-.025-.03-.068-.043-.068-.146.019-.263-.153-.404-.085-.391.19-.826.134-1.23.257-.092.03-.184.067-.178.177.019.135.135.086.233.104zm1.072-2.296c.655.662 1.415.907 1.751.576-.563-.27-1.163-.416-1.75-.576zM45.606 84.46c-.073.287-.22.36-.459.306-.128-.031-.226.067-.312.152-.484.472-1.102.76-1.629 1.17-.324.25-.808.147-1.126-.14-.453-.411-.882-.84-1.243-1.336-.16-.214-.3-.214-.447-.006-.19.276-.447.49-.618.784-.472.833-1.476.63-1.874-.104-.116-.214-.25-.416-.36-.637-.123-.226-.258-.22-.43-.055-.19.178-.397.349-.587.533-.288.275-.612.355-.998.27-.533-.123-.772-.779-.392-1.158.496-.49 1.004-.974 1.549-1.402.196-.16.52-.184.79-.208.208-.019.361.153.508.294.263.257.514.52.686.844.091.166.171.13.275.019.251-.276.49-.57.772-.82.49-.441.985-.386 1.444.08.435.44.851.893 1.213 1.401.08.11.165.147.281.074.27-.16.527-.343.766-.552.128-.116.11-.201-.05-.3-.985-.587-1.91-1.242-2.706-2.093-1.016-1.09-1.91-2.278-2.822-3.453-.435-.558-.802-1.17-1.224-1.74-.306-.41-.692-.764-.986-1.187-.674-.973-1.329-1.959-1.818-3.049-.233-.514-.496-1.022-.692-1.555-.257-.704-.527-1.402-.71-2.124-.092-.355-.16-.71-.307-1.053a.703.703 0 01-.049-.3c.007-.166.154-.215.276-.245.14-.037.196.092.208.202.019.196.165.312.239.465.177.367.563.606.637 1.035.024.135.128.202.19.3.453.734.967 1.439 1.328 2.234.3.668.771 1.237 1.28 1.764.875.906 1.702 1.867 2.381 2.92 1.078 1.665 2.486 3.024 3.76 4.512.44.514.869 1.041 1.279 1.58.263.349.649.606.98.906.036.037.103.073.134.03.19-.22.478-.103.71-.22.19-.098.404.043.564.19.324.294.6.63.826 1.01.135.22.44.257.729.312.398.05.416.245.642.343.294.435-.183.753-.201.784-.24.355-.925.57-1.305.392-.208-.098-.367-.282-.514-.466-.19-.214-.373-.44-.588-.704zM55.157 94.212c-.153.037-.263-.037-.391-.116a8.17 8.17 0 01-1.127-.876c-.251-.232-.373-.202-.594.074-.226.282-.465.563-.704.839-.245.27-.943.306-1.267.092-.52-.35-.937-.809-1.384-1.231-.392-.373-.44-.386-.82 0-.245.245-.447.514-.662.784-.3.385-.875.471-1.316.25-.361-.183-.539-.514-.759-.814-.508-.667-.49-.667-1.078-.073-.367.373-.79.68-1.353.698-.367.012-.575-.178-.612-.557 0-.03-.006-.074-.018-.08-.429-.147-.055-.318.018-.386.527-.434.992-.93 1.482-1.402.294-.281.655-.385 1.01-.52.171-.067.361-.006.539.122.416.3.759.662 1.022 1.096.086.141.166.11.263.019.172-.16.355-.306.52-.466.295-.294.65-.483 1.035-.624.282-.104.515.037.73.202.483.373.96.753 1.383 1.188.196.202.349.214.55-.007.393-.428.852-.777 1.403-.991.245-.092.471 0 .661.11.796.453 1.42 1.139 2.137 1.702.036.03.08.073.085.122.031.27-.526.943-.753.845zM67.867 93.11c-.459.03-.698-.202-.949-.373-.318-.215-.606-.472-.9-.729-.202-.177-.349-.214-.563 0-.257.257-.532.496-.777.772-.343.391-.919.416-1.378.171-.55-.294-.863-.814-1.298-1.224-.214-.203-.386-.24-.6-.05-.361.319-.808.454-1.23.65a.953.953 0 01-1.31-.576c-.056-.165.06-.3.214-.392.275-.153.538-.318.82-.465.471-.245.82-.661 1.286-.919.367-.201.649-.128.98.08.501.319.936.71 1.328 1.151.177.202.312.227.514.006.306-.324.674-.57 1.06-.802.477-.287.863-.085 1.23.178.38.27.778.514 1.114.839.208.202.386.159.576-.019.508-.471 1.114-.808 1.708-1.15.214-.123.435-.142.637-.013.25.165.538.27.728.533.251.342.527.667.79 1.004.116.153.165.306.006.459a.35.35 0 00-.067.135c-.03.104.19.244-.05.324-.244.086-.483.19-.752.049-.319-.16-.582-.361-.76-.673-.128-.24-.281-.313-.52-.098a6.75 6.75 0 01-1.31.924c-.208.135-.404.22-.527.208zM85.053 92.082c-.337-.104-.674-.227-.9-.551-.386-.564-.423-.564-.919-.098-.19.183-.385.349-.618.49-.582.342-.967.17-1.42-.16-.313-.226-.582-.508-.857-.777-.11-.11-.184-.117-.306-.019-.35.282-.631.625-1.005.882-.483.33-1.04.202-1.304-.361-.067-.141.019-.282.117-.386.502-.502 1.065-.937 1.573-1.426.539-.52.986-.319 1.482.012.33.22.649.453.93.734.141.141.245.16.41.019.356-.3.68-.637 1.084-.882a.529.529 0 01.429-.073c.808.19 1.285.808 1.812 1.365.11.123.147.288.067.46a.357.357 0 00-.036.177c.03.355-.178.594-.54.594zM49.855 85.512c-.073-.93.03-1.855-.03-2.773-.055-.882.006-1.763-.043-2.639a.994.994 0 01.03-.33c.068-.251.233-.313.472-.196a.985.985 0 01.539.606c.208.618.336 1.255.349 1.904.018.943.098 1.88.036 2.822-.042.686.031 1.372-.049 2.063-.042.386-.208.686-.459.962-.128.14-.257.049-.33-.061-.11-.166-.233-.337-.282-.533-.129-.606-.312-1.206-.233-1.825zM54.257 86.223c.013.263.025.526.043.79.025.355-.165.624-.386.863-.165.183-.324.049-.416-.11a3.086 3.086 0 01-.367-.864c-.227-1.01-.312-2.045-.49-3.061-.135-.76-.306-1.512-.422-2.271-.092-.6-.313-1.176-.24-1.8.031-.276.166-.374.442-.35.306.025.447.209.563.454.318.667.46 1.383.618 2.094.135.581.282 1.163.374 1.75.122.827.294 2.498.281 2.505zM57.98 86.253a.236.236 0 01-.398.178 3.082 3.082 0 01-.502-.625c-.717-1.206-1.212-2.522-1.813-3.783-.459-.974-1.01-1.898-1.53-2.835a1.482 1.482 0 01-.14-.3c-.05-.178-.05-.392.079-.496.177-.147.416-.135.624-.006.325.196.502.526.704.826.619.919 1.114 1.904 1.592 2.902.52 1.09.955 2.21 1.286 3.368.073.245.086.502.098.771zM94.47 87.44c-.332.117-.846-.017-1.078-.293a6.268 6.268 0 00-1.017-.955c-.183-.14-.294-.165-.434.049-.196.288-.41.557-.631.82a1.332 1.332 0 01-.808.478c-.282.055-.52-.184-.71-.374-.368-.367-.074-.557.122-.802.386-.496.76-1.004 1.157-1.487.147-.178.337-.319.533-.447.183-.129.392-.098.612-.037.76.214 1.261.79 1.843 1.255.22.178.416.392.6.606.135.16.324.392.324.68-.067.19-.128.367-.514.508zM30.527 96a1.715 1.715 0 01-1.004-.502c-.392-.398-.753-.82-1.127-1.23-.14-.16-.281-.184-.483-.08-.441.239-.882.502-1.402.563-.33.037-.894-.214-1.053-.588-.098-.226.06-.373.214-.477.11-.08.251-.184.361-.202.65-.117 1.157-.515 1.714-.808.313-.16.564-.129.882.036.998.52 1.671 1.402 2.467 2.15.251.232.147.544.08.789-.073.257-.361.349-.649.349zM14.37 84.802c.239.043.502.08.735.214.171.098.263.056.324-.11.086-.226.214-.416.435-.526.275-.135.833-.006 1.065.226.337.343.612.723.76 1.188.055.165.06.276-.13.398-.33.22-.593.251-.856-.08-.055-.073-.202-.104-.258.025-.067.153-.232.202-.312.312-.177.257-.416.196-.538.055-.386-.44-.803-.44-1.292-.226-.11.049-.288.238-.392.042-.129-.238-.355-.459-.312-.77.067-.534.306-.766.771-.748z"
|
|
22
|
+
fill={fill}
|
|
23
|
+
/>
|
|
24
|
+
</BaseSvg>
|
|
25
|
+
);
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export default GrowingSketch;
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import
|
|
3
|
-
import type {
|
|
2
|
+
import { Path, Rect } from 'react-native-svg';
|
|
3
|
+
import type { IllustrationSvgProps } from '../types';
|
|
4
|
+
import BaseSvg from '../BaseSvg';
|
|
4
5
|
|
|
5
|
-
const Info = ({
|
|
6
|
+
const Info = ({
|
|
7
|
+
stroke,
|
|
8
|
+
fill,
|
|
9
|
+
testID,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
}: IllustrationSvgProps) => {
|
|
6
13
|
return (
|
|
7
|
-
<
|
|
14
|
+
<BaseSvg width={width} height={height} testID={testID}>
|
|
8
15
|
<Rect
|
|
9
16
|
x="0.799805"
|
|
10
17
|
y="11.3684"
|
|
@@ -28,7 +35,7 @@ const Info = ({ stroke, fill, testID }: StatusSvgProps) => {
|
|
|
28
35
|
d="M49.1021 17.6145L49.1018 17.6137L49.0596 17.5759C46.6814 15.4509 43.6028 14.4854 40.3885 14.8514L40.3882 14.8515C37.9096 15.138 35.5658 16.2835 33.7948 18.0612C32.0167 19.8461 30.904 22.1971 30.6572 24.6761C30.4511 26.5531 30.7238 28.4444 31.4371 30.1375L31.4373 30.1379C32.1233 31.7564 33.2083 33.2013 34.5796 34.3203C35.389 35.0195 35.8306 35.9376 35.8306 36.902C35.8306 36.9343 35.8329 36.965 35.8345 36.9863C35.8363 37.0109 35.8371 37.023 35.8371 37.0325V41.2545C35.8371 43.4251 37.5993 45.2245 39.7811 45.2245H43.5657C45.7397 45.2245 47.5097 43.4394 47.5097 41.2675V41.2671L47.5032 37.0652C47.5032 36.0799 47.9445 35.1119 48.683 34.4765C51.2707 32.3271 52.7627 29.1914 52.7627 25.8745L52.7627 25.874C52.756 22.7112 51.4274 19.7113 49.1021 17.6145ZM46.9725 32.4155L46.9643 32.4223L46.9568 32.4298C46.9416 32.445 46.9297 32.4607 46.9206 32.475C46.0459 33.2353 45.4139 34.2392 45.0849 35.3722H43.0073V29.3904C43.6033 29.2588 44.0513 28.7269 44.0513 28.0926C44.0513 27.3553 43.4549 26.7588 42.7175 26.7588H40.6294C39.8921 26.7588 39.2957 27.3553 39.2957 28.0926C39.2957 28.7334 39.7442 29.2601 40.3397 29.3906V35.3722H38.2855C37.9624 34.166 37.2877 33.1393 36.3257 32.3112C36.3232 32.3078 36.3199 32.3035 36.3161 32.2987C36.3118 32.2936 36.306 32.2869 36.2988 32.2797L36.2905 32.2714L36.2815 32.2641C35.2398 31.4192 34.414 30.3202 33.8999 29.1016C33.3542 27.807 33.1566 26.4097 33.3095 24.958L33.3107 24.9462V24.9344V24.9327C33.7029 21.0834 36.8018 17.9543 40.6943 17.5033C43.1443 17.2234 45.4881 17.9548 47.2919 19.5684L47.2921 19.5685C49.0709 21.1567 50.0946 23.451 50.0948 25.8669C50.0884 28.3832 48.9577 30.7739 46.9725 32.4155ZM43.5658 42.5499H39.7812C39.0814 42.5499 38.5048 41.9573 38.5048 41.2475V38.0398H41.4386C41.456 38.0398 41.4767 38.0427 41.5191 38.0498L41.5242 38.0506C41.5603 38.0567 41.6154 38.0659 41.6735 38.0659C41.7318 38.0659 41.7887 38.0566 41.8258 38.0505L41.8296 38.0499C41.8748 38.0425 41.8944 38.0398 41.9084 38.0398H44.836L44.8421 41.2739C44.8421 41.274 44.8421 41.2741 44.8421 41.2743C44.8419 41.9788 44.2705 42.5499 43.5658 42.5499Z"
|
|
29
36
|
fill={stroke}
|
|
30
37
|
/>
|
|
31
|
-
</
|
|
38
|
+
</BaseSvg>
|
|
32
39
|
);
|
|
33
40
|
};
|
|
34
41
|
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import type { IllustrationSvgProps } from '../types';
|
|
4
|
+
import BaseSvg from '../BaseSvg';
|
|
5
|
+
import useMonoColor from '../hooks/useMonoColor';
|
|
6
|
+
|
|
7
|
+
const InstantSketch = ({ testID, width, height }: IllustrationSvgProps) => {
|
|
8
|
+
const { fill, stroke } = useMonoColor();
|
|
9
|
+
|
|
10
|
+
return (
|
|
11
|
+
<BaseSvg width={width} height={height} testID={testID} viewBox="0 0 74 96">
|
|
12
|
+
<Path
|
|
13
|
+
d="M64.032 95.83c-.321-.183-.671-.269-1.015-.384-.987-.327-1.985-.62-2.971-.952-.843-.28-1.663-.625-2.5-.906-.85-.28-1.687-.602-2.536-.895-1.416-.481-2.822-.98-4.215-1.52-.694-.263-1.394-.51-2.07-.814-.546-.246-1.136-.384-1.63-.757-.665-.499-1.146-1.101-1.29-1.95-.115-.67-.2-1.348-.195-2.019 0-.522-.006-1.043.006-1.571.023-.769.069-1.543 0-2.311-.029-.304 0-.608.017-.912.04-.631-.069-1.256-.029-1.887.058-.866-.023-1.732-.011-2.598.011-.763.023-1.526.046-2.283.005-.235-.069-.47-.012-.711.029-.126-.097-.172-.195-.212-.246-.104-.504-.178-.751-.27-.568-.206-2.913-1.227-3.355-1.44-.425-.126-.918-.275-1.038-.825a4.26 4.26 0 01-.086-.769c-.006-.344-.035-.688-.046-1.032-.006-.166-.069-.212-.252-.218-.517-.012-.998-.166-1.446-.407a.712.712 0 01-.373-.654c0-.7-.005-1.394-.028-2.094-.012-.401-.023-.797-.017-1.198.005-.597.028-1.199.017-1.795-.012-.717-.023-1.428-.046-2.145a26.645 26.645 0 01.006-1.916c.011-.298-.04-.35-.333-.447-.396-.132-.814-.218-1.187-.402-.298-.149-.62-.223-.912-.367-.247-.12-.528-.258-.855-.137-.315.12-.768-.27-.774-.62-.006-.304.103-.58.178-.866.132-.493.109-.499-.373-.636a50.828 50.828 0 01-2.185-.7 24.79 24.79 0 01-1.422-.522c-.551-.218-1.09-.465-1.635-.688a42.886 42.886 0 01-3.447-1.623 21.75 21.75 0 01-2.426-1.457 80.446 80.446 0 01-1.824-1.29c-.682-.5-1.348-1.022-2.041-1.498-.413-.286-.82-.579-1.222-.883a58.497 58.497 0 00-1.21-.866 10.285 10.285 0 01-1.526-1.25c-.246-.247-1.187-1.038-1.376-1.227-.241-.253-.568-.413-.74-.74-.012-.017-.017-.029-.029-.046-.074-.092-.206-.155-.304-.241-.31-.281-.786-1.227-.969-1.245-.855-.086-1.71-.114-2.564-.206-.998-.103-1.978-.292-2.965-.482-1.147-.218-2.294-.447-3.424-.763-.28-.08-.573-.143-.854-.229-.516-.15-.964-.407-1.29-.849-.282-.378-.265-1.13-.012-1.525.24-.385.556-.631.992-.758.58-.172 1.159-.31 1.772-.298.339.006.339 0 .442-.32.097-.316.137-.66.258-.964.166-.425.24-.872.39-1.302.172-.494.315-.993.493-1.486.017-.046.023-.092.046-.137.109-.207.19-.419.252-.649.098-.372.287-.722.488-1.055.16-.27.315-.539.401-.849.035-.126.167-.183.218-.298.298-.682.763-1.262 1.205-1.852.091-.12.195-.241.304-.344.504-.465.957-.981 1.44-1.469 1.003-1.015 2.219-1.703 3.435-2.397 1.25-.717 2.58-1.239 3.951-1.658.774-.235 1.555-.464 2.369-.544.424-.046.843-.132 1.279-.127.287.006.327-.063.327-.344.005-.355.057-.676-.299-.975-.326-.27-.516-.722-.498-1.175.034-.752.332-1.394 1.015-1.778.785-.448 1.611-.534 2.454-.132.339.16.62.413.884.67a.834.834 0 01.263.529c.035.32.115.653.064.963-.064.39-.172.797-.522 1.055-.12.086-.15.184-.15.316 0 .172.006.344-.005.516-.012.206.086.298.28.315.477.046.953.092 1.423.144.918.103 1.835.212 2.73.459.448.126.906.212 1.342.39.602.24 1.199.504 1.784.785.522.247 1.05.488 1.566.74.82.407 1.554.952 2.248 1.554.459.402.889.832 1.307 1.28.648.693 1.308 1.376 1.819 2.196.326.522.682 1.032 1.003 1.56.533.872.998 1.778 1.354 2.741.218.585.361 1.188.544 1.778.161.517.236 1.038.339 1.566a.937.937 0 01.017.31c-.029.28.063.373.35.39.711.04 1.394.195 2.036.505.39.189.648.527.9.86.172.224.15.499.03.763-.288.613-.747 1.05-1.343 1.359a7.163 7.163 0 01-2.392.763c-.55.074-1.09.177-1.64.24-.516.064-1.026.018-1.543.098-.556.08-1.118.115-1.68.16a377.655 377.655 0 01-3.27.259c-.166.017-.211.086-.12.246.534.97.912 2.02 1.492 2.965.447.735.934 1.434 1.537 2.06.258.263.447.487.871.258.155-.08 1.658.154 2.174.194.166.012.281.012.206-.2-.045-.138.03-.184.144-.224.35-.132.7-.166 1.06-.086.999.218 1.991.459 2.972.74.522.149 1.055.264 1.589.378.223.052.441.115.67.144.218.023.27-.04.264-.241-.005-.93 0-1.853 0-2.782 0-1.388.023-2.77-.011-4.158-.023-.837.046-1.68 0-2.512-.052-.918.051-1.83-.006-2.741-.029-.46.006-.912.006-1.371 0-.54-.035-1.084-.035-1.623 0-.66 0-1.32.006-1.973.006-.705-.017-1.41-.011-2.122.005-.837.04-1.68.017-2.518-.017-.596.029-1.198-.006-1.795-.029-.396.017-.797.017-1.199 0-1.709 0-3.412.035-5.121.011-.677-.006-1.348 0-2.025.005-.923.074-1.847.091-2.764.012-.574.04-1.141.08-1.715a3.64 3.64 0 01.58-1.686 6.643 6.643 0 011.56-1.692c.281-.212.637-.298.952-.453 1.073-.528 2.134-1.067 3.223-1.554 1.096-.494 2.18-1.021 3.275-1.52 1.015-.46 2.03-.935 3.046-1.394.975-.442 1.95-.877 2.925-1.313.653-.293 1.296-.603 1.961-.872.27-.11.568-.155.843-.252.092-.03 1.314.005 1.486 0 .636-.035 1.25.097 1.875.172.683.08 1.365.166 2.047.246.58.07 1.755.5 1.801.522.528.27.924.688 1.205 1.187.258.448.332.975.401 1.486.086.7.063 1.405.086 2.11.029.952.029 1.904.04 2.857.006.625 0 1.25.04 1.875.03.464-.01.935-.022 1.4-.018.493.005.986.017 1.479.034 1.268 0 2.54.011 3.808.006.683-.046 1.371-.011 2.053.034.758-.035 1.52-.023 2.277.011.671.011 1.348-.012 2.025-.028.797.046 1.6.006 2.397-.034.694 0 1.394-.011 2.088-.023 1.124 0 2.254.005 3.384 0 .963-.005 1.927-.011 2.896-.006.832-.023 1.663.011 2.49.03.71-.011 1.421.018 2.133.023.625-.058 1.256-.023 1.875.034.625-.006 1.25.023 1.881.034.82 0 1.64 0 2.455 0 .751.017 1.503.017 2.254.006.487-.04.97-.006 1.457.023.286-.04 1.296-.034 1.497.017.435.063 6.337.051 6.51-.057.653.04 3.566.017 3.945-.022.453-.028 12.159.08 15.026.035.912-.04 1.824 0 2.73.012.304-.05.614-.034.906.035.58.006 1.159.035 1.738.023.362 0 .729 0 1.09 0 .315.017.63-.006.946-.017.287.006 1.698.006 1.985 0 .143.132 3.928-.046 4.8-.075.373-.063.774-.132 1.159-.206 1.21-.768 2.22-1.71 3.022-.498.424-3.997 1.428-4.106 1.445-.2.035-.94.224-1.05.258-.228.08-.538.087-.802.08-.006.04-.677.115-1.382-.125zM46.9 73.63v3.04c0 .63.011 1.26.011 1.886 0 .872-.023 8.517.235 9.308.224.694.574 1.245 1.325 1.497.946.321 1.875.7 2.828 1.027.934.321 1.858.7 2.798.992.637.195 1.262.442 1.887.665.935.333 1.876.643 2.805.992 1.353.511 2.73.964 4.089 1.457.465.167.964.253 1.388.516.029.018.075.023.109.018.636-.04 1.044-.224 1.233-.895.206-.717.224-1.457.258-2.185.063-1.268.017-2.54.017-3.814v-8.047c0-1.026.023-2.059.023-3.085 0-1.124-.028-2.254-.023-3.378.006-.723.017-1.451.023-2.174.006-.597 0-1.199-.023-1.8-.028-.833.035-1.658.04-2.49.012-4.175.006-8.35.018-12.531 0-.975.011-1.95.023-2.92.005-.717.011-1.445-.012-2.168-.029-.952.034-1.904.034-2.85.006-5.575.012-11.144 0-16.718-.017-6.562.07-13.128-.045-19.69-.006-.413.051-.82.057-1.227.006-.63.023-1.262 0-1.893-.052-1.353.098-2.7-.017-4.054-.063-.763-.316-1.388-1.055-1.732-.282-.132-.551-.19-.85-.064-.257.104-.521.19-.774.299-.63.27-1.284.493-1.892.831-.637.356-1.36.545-2.002.912-.006.006-.017.006-.029.012-.567.218-1.112.487-1.657.762-.138.07-1.176.51-1.25.545-.344.16-.688.327-1.038.476-.5.213-.975.482-1.48.677-.275.11-.562.212-.82.344a11.22 11.22 0 00-.998.545c-.098.057-.642.298-.717.333-.453.183-.895.39-1.33.608-.098.051-1.647.78-1.738.82-.281.115-.603.235-.74.505-.052.103-.15.103-.207.32-.04.144-.327.815-.39.993-.137.39-.218.797-.218 1.204 0 .85-.132 1.692-.086 2.541.029.516-.005 1.044-.011 1.566 0 .275-.012 1.76.005 2.225.018.505 0 1.01.052 1.514.035.379-.011.757-.006 1.136.006.636.03 1.273.046 1.91.018.55-.046 1.1 0 1.657.012.16-.023 1.222-.034 1.589-.012.338.109 8.333.092 9.824-.006.425-.035.86-.035 1.28 0 .418 0 .848.035 1.272.005.064 0 5.793 0 6.676v2.696c0 .338.005.327.332.39.241.046.488.092.729.132.831.155 1.651.384 2.489.516.837.138 1.669.292 2.506.441.43.075.872.121 1.29.247.901.27 1.841.39 2.719.763.568.24 1.181.378 1.778.545.361.103.671.252.918.539.114.132.263.24.464.252.465.017.9.19 1.354.287.298.063.596.15.894.166.281.018.551.063.815.138.183.052.355.097.556.109.19.011.413.034.54.195.091.115.194.143.315.172.16.034.315.08.476.092.235.023.287.149.287.367-.006.906-.035 1.812-.052 2.718-.029 1.836-.012 3.67-.012 5.506 0 .218-.04.442-.023.654.063.906.03 1.812 0 2.718a40.328 40.328 0 000 2.203c.012.447.023.895.023 1.348 0 .275-.057.304-.31.2-.36-.149-.705-.338-1.078-.453-.39-.12-.78-.263-1.164-.39a39.847 39.847 0 01-1.75-.63c-.085-.035-.206-.087-.211.074-.012.235-.063.476-.04.705.028.276-.127 4.933-.098 5.145.035.252-.092 4.106-.143 4.192-.035.281-.12.482-.316.557a2.438 2.438 0 01-1.124-.023c-.958-.298-1.944-.47-2.92-.723a74.983 74.983 0 01-3.366-.94 135.237 135.237 0 01-3.647-1.188c-.706-.235-1.434-.424-2.185-.78zm12.566-21.095c.022-.23-.304-.895-.488-1.026-.08-.064-.178-.07-.27-.07a1.359 1.359 0 01-.453-.068c-.837-.264-1.697-.43-2.552-.631-.889-.207-1.784-.407-2.672-.614-.832-.195-5.14-.98-5.673-1.095-.654-.138-1.325-.207-1.961-.384-.54-.155-1.101-.207-1.64-.373a17.165 17.165 0 00-1.64-.419 6.763 6.763 0 01-1.55-.527c-.074-.035-.171-.07-.24.005-.063.069-.012.144.011.218.07.247.19.476.224.74.098.717.241 1.428.321 2.145.046.442.224 2.265.075 2.799-.023.08.166 1.336.166 1.508-.006.654.029 1.302.017 1.956-.005.373.167 4.49.155 4.766-.023.59.012 1.181.046 1.772.046.711.08 1.428.103 2.14.023.774.052 1.542.11 2.316.005.086.028.574.028.717 0 .58.12 2.14.287 2.191.831.247 1.663.5 2.495.763 1.055.333 2.116.648 3.165.998.62.206 1.262.373 1.882.585.556.19 1.14.287 1.686.528.097.04 2.38.694 2.896.877.493.178 1.015.298 1.526.436.608.16 1.221.31 1.835.465.62.154 1.244.28 1.87.435.286.07.298.058.304-.252.017-.774.011-1.549.04-2.317.04-.992.051-1.984.069-2.977.017-.82.011-1.646.005-2.466-.005-.975-.005-1.944-.028-2.919-.03-1.084-.092-2.174-.138-3.258-.052-1.066.057-2.133.011-3.2-.045-.998-.028-2.002-.057-3-.029-.923.017-1.846.035-2.764zm-25.54-14.86v.017c.018 0 .04.006.058.006.785-.086 1.571-.19 2.363-.206.189-.006.206-.132.172-.281-.086-.413-.16-.826-.264-1.234a72.288 72.288 0 00-.946-3.246c-.436-1.382-.895-2.747-1.532-4.049-.292-.602-.654-1.164-1.003-1.726-.213-.333-.5-.642-.763-.952a20.498 20.498 0 00-1.382-1.446 14.746 14.746 0 00-2.07-1.611c-.219-.138-.42-.298-.643-.424-.625-.35-1.302-.585-1.973-.838a4.825 4.825 0 00-1.417-.31 34.342 34.342 0 01-1.084-.08 14.117 14.117 0 00-2.03-.034c-.654.028-1.308-.086-1.961.034-.488.092-.603.057-1.572.241-.396.046-.602.109-1.485.384-.47.253-.534.235-1.526.694-.27.126-1.468.66-1.79.832-.194.103-.756.401-.808.43-.367.235-.774.407-1.136.654-.263.183-.579.298-.785.556a3.31 3.31 0 01-.413.436c-.557.453-.998 1.02-1.52 1.508-.625.585-1.021 1.354-1.445 2.082-.276.465-.545.935-.74 1.451-.241.62-.528 1.228-.711 1.87-.178.614-.356 1.227-.534 1.847-.212.751-.504 1.48-.636 2.254-.075.436-.086.436.367.51.091.017.189.023.28.04.62.103 1.257.098 1.876.212 1.09.207 2.191.287 3.298.368.562.04 1.124.051 1.68.131.683.098 1.365.144 2.048.201 1.692.132 3.395.115 5.093.172.992.035 1.984-.005 2.976-.034 2.845-.08 5.69.092 8.534-.12.74-.058 1.48-.138 2.22-.213.39-.034.797-.08 1.204-.126zm-18.134 5.592c.298.401.67.728 1.083 1.004.626.413 1.21.883 1.841 1.296.465.304.895.676 1.348 1.003.442.316.883.626 1.302.97.361.292.74.568 1.113.843.814.613 1.715 1.095 2.552 1.669.63.43 1.36.67 2.03 1.032.803.436 1.663.757 2.518 1.095.637.253 1.279.5 1.921.746.379.15.763.287 1.147.43.167.063.253.023.304-.16.367-1.256.735-2.512 1.01-3.791.183-.855.332-1.727.717-2.53.057-.114.017-.195-.058-.28-.143-.167-.298-.328-.418-.505a62.756 62.756 0 01-1.102-1.635c-.412-.636-.694-1.336-1.026-2.013-.08-.166-.138-.27-.379-.224-.2.04-.871.304-.9.35-.172.27-.493.453-.39.86.075.293.063.614.155.9.097.293.029 1.412.023 1.584-.012.31-.16.516-.562.378-.597-.206-1.199-.367-1.807-.539-1.537-.441-2.97-1.135-4.416-1.783-.746-.339-1.514-.631-2.254-.981-.287-.132-.545-.316-.837-.424-.958-.368-1.859-.844-2.742-1.348-.224-.127-.453-.23-.728-.212-.516.034-1.027-.046-1.543-.064-.235-.011-.476-.103-.717-.005.029.109.098.143.155.195.304.275.648.504.992.717.275.172.476.424.78.567.54.253 1.038.603 1.497.975.533.43 1.124.775 1.663 1.193.253.201.55.339.826.51.264.161 2.162 1.406 2.644 1.658.195.098.241.316.298.494.023.063.046.217-.023.32a.858.858 0 01-1.055.293 8.821 8.821 0 01-.608-.321c-.665-.373-1.256-.866-1.91-1.267-.694-.425-1.347-.901-2.018-1.354-.545-.367-.958-.923-1.624-1.124-.034-.012-.063-.04-.097-.063-.241-.16-.47-.31-.706-.46zm54.915-14.115c0-1.302-.006-2.598 0-3.9 0-.24-.03-.476-.098-.705-.155-.516-.763-.814-1.267-.637-.494.172-.74.563-.746 1.2-.034 2.408.057 4.811-.057 7.22-.029.66.057 1.313.057 1.973-.006.59.436 1.044.987 1.06.521.024 1.026-.435 1.055-1.003.023-.447.057-.895.063-1.342.011-1.285.006-2.575.006-3.866zm-.086-17.297c-.241-.78-1.147-.987-1.71-.402-.252.258-.315.58-.315.924v8.396c0 .184.017.361.063.54.144.515.51.78 1.061.762.447-.017.837-.367.918-.837.04-.224.063-.453.063-.683 0-2.586.006-5.173-.006-7.765.006-.31.046-.545-.074-.935zM13.854 39.097a5.087 5.087 0 01-.877-.103c-.207-.04-3.293-.252-3.505-.258a5.91 5.91 0 01-1.227-.16c-.235-.052-1.027-.121-1.187-.161-.39-.103-.792-.12-1.188-.155-.384-.029-1.898-.447-2.31-.453-.07 0-.116-.063-.167-.109-.235-.206-.23-.487-.241-.763-.012-.287-.04-.304-.315-.287-.528.035-.993.236-1.446.47-.195.104-.212.276-.006.39.213.121.425.259.672.322.969.247 1.938.493 2.924.688 1.526.298 3.057.574 4.606.717 1.118.103 2.242.143 3.367.206.694.04 1.393.04 2.081.127 1.016.126 2.042.08 3.057.149.608.04 1.216.114 1.824.143.82.046 1.635.132 2.455.144 1.279.017 2.558-.012 3.831-.035 1.181-.023 2.369-.052 3.55-.074.126 0 .247-.018.373-.04a.307.307 0 00.264-.339v-.006a.273.273 0 00-.276-.24c-.66.022-2.26.034-2.408.068-.379.086-.757.063-1.136.012-.275-.035-.573-.104-.82-.058a3.841 3.841 0 01-.843.075c-.287-.017-.568 0-.855.017-.16.012-.7-.057-.785-.057-.264 0-2.163-.063-2.289-.052-.31.029-.608-.086-.912-.046-.447.058-5.987-.12-6.211-.132zm10.639 2.254c.19.236.47.362.717.534a36.68 36.68 0 012.317 1.79c.086.074.143.171.24.24.546.367 1.044.786 1.56 1.187.047.035.087.092.15.063.08-.04.04-.114.034-.178a2.37 2.37 0 00-.046-.195 15.394 15.394 0 01-.35-3.4c0-.138-.028-.201-.189-.207-.28-.017-3.016.034-3.36.092-.362.057-.718-.058-1.073.074zm14.59 25.838c-.011.218.259.355.482.39.103.017.195.074.293.109.275.109.304.091.275-.213a13.75 13.75 0 01-.052-1.084c0-.355.012-.71-.017-1.06-.08-.901-.12-1.807-.143-2.713-.029-1.182-.017-2.363-.012-3.55 0-.23-.069-.35-.292-.42-.195-.062-.402-.102-.591-.2-.27-.138-.298-.12-.252.172.069.425.172.849.16 1.285-.005.424.052.837.086 1.256.012.143.046 2.764.103 3.154.012.075-.028 2.553-.04 2.874zM21.912 18.508c.143 0 .287.017.43-.006.253-.04.534-.069.677-.315.356-.626.086-1.285-.54-1.56a1.532 1.532 0 00-1.278.034c-.648.304-.906.705-.5 1.445.121.224.282.356.557.373.212.012.43.035.654.029zm13.266 30.901c-.276 0-.31.167-.322.27-.063.465-.567 2.455-.584 2.512-.11.384-.236.763-.368 1.141-.137.402-.126.402.253.55a.467.467 0 01.103.058c.12.063.172.018.195-.109.075-.384.166-.763.23-1.147.08-.47.137-.946.206-1.416.103-.677.206-1.342.287-1.859zM21.929 19.437c-.126.011-.27.023-.413-.006-.114-.023-.183.017-.183.143-.006.087-.023.167-.035.253-.011.092.029.16.12.16.316 0 .626.006.941-.022.218-.023.207-.23.213-.385.011-.172-.144-.143-.253-.149-.126 0-.252.006-.39.006z"
|
|
14
|
+
fill={fill}
|
|
15
|
+
stroke={stroke}
|
|
16
|
+
/>
|
|
17
|
+
<Path
|
|
18
|
+
d="M57.884 86.442c.063.304-.07.59-.058.889a5.45 5.45 0 01-.023.533c-.046.253-.24.924-.304 1.015-.287.402-.533.832-1.02 1.038-.253.11-.551.218-.763.173a3.377 3.377 0 01-.93-.344c-.808-.448-1.261-1.165-1.565-2.002-.178-.482-.275-.964-.184-1.486.052-.298.035-.602.092-.906.052-.258.126-.504.258-.717.304-.493.62-.992 1.078-1.359.62-.493 1.342-.516 1.996.023.992.82 1.28 1.944 1.423 3.143zM54 85.857c-.017.654.12 1.296.396 1.898.183.402.384.786.854.947.51.177.809.046 1.073-.436.28-.51.275-1.061.32-1.606.018-.178.047-.367.018-.534-.115-.602-.31-1.17-.677-1.68-.24-.344-.958-.43-1.319-.12-.453.401-.694.9-.665 1.531zM53.06 8.947c.321-.074.602-.183.878-.304 1.066-.47 2.127-.946 3.194-1.422.235-.103.453-.241.677-.373.207-.12.235-.275.166-.482-.114-.355.04-.545.407-.453.184.046.465.006.505.293.046.332.07.66-.24.923-.568.482-1.257.751-1.91 1.084-.522.264-1.039.533-1.572.763-.419.178-.82.384-1.245.562-.263.109-.533.2-.802.292-.442.15-.93-.292-.872-.797.057-.516.361-.826.785-1.05 1.096-.584 2.237-1.083 3.373-1.57.28-.121.562-.242.866-.305.149-.029.332-.103.413.069.092.2-.086.304-.241.396-.361.218-.74.401-1.118.585-.534.258-1.073.499-1.595.785-.401.218-.809.43-1.233.597-.172.057-.378.126-.436.407z"
|
|
19
|
+
fill={fill}
|
|
20
|
+
stroke={stroke}
|
|
21
|
+
/>
|
|
22
|
+
</BaseSvg>
|
|
23
|
+
);
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export default InstantSketch;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Path } from 'react-native-svg';
|
|
3
|
+
import type { IllustrationSvgProps } from '../types';
|
|
4
|
+
import BaseSvg from '../BaseSvg';
|
|
5
|
+
import useMonoColor from '../hooks/useMonoColor';
|
|
6
|
+
|
|
7
|
+
const LiftSketch = ({ testID, width, height }: IllustrationSvgProps) => {
|
|
8
|
+
const { fill } = useMonoColor();
|
|
9
|
+
|
|
10
|
+
return (
|
|
11
|
+
<BaseSvg width={width} height={height} testID={testID} viewBox="0 0 126 96">
|
|
12
|
+
<Path
|
|
13
|
+
d="M51.422 95.992c-.24-.142-.47-.31-.72-.426-.328-.15-.611-.337-.798-.665-.097-.178-.275-.213-.461-.213-1.402.044-2.795-.142-4.197-.204-1.43-.063-2.858-.08-4.286-.231-.47-.053-.941.009-1.411-.018-1.465-.089-2.938-.097-4.402-.23a8.764 8.764 0 00-.683-.027c-1.872.009-3.745-.178-5.617-.24-.95-.035-1.908-.08-2.857-.133-.923-.053-1.846-.053-2.76-.15-.586-.063-1.18-.036-1.766-.08a27.116 27.116 0 00-2.076-.098c-.657 0-1.296-.124-1.944-.107-.213.01-.372.08-.559.213-1.25.914-2.617 1.322-4.153.843-.053-.017-.115-.062-.168-.053-.55.098-.87-.24-1.207-.586-.248-.257-.532-.47-.79-.71-.142-.133-.31-.15-.497-.15-1.375-.027-2.742-.151-4.108-.205-.666-.026-2.103-.417-2.2-.488-.427-.204-.88-.337-1.314-.523-.754-.32-1.269-.87-1.65-1.535-.4-.692-.595-1.447-.435-2.254.062-.337.284-.612.452-.905.089-.151.213-.284.284-.453.621-1.428 1.722-2.502 2.68-3.691.408-.497.825-.985 1.278-1.447.461-.479.923-.958 1.428-1.384.409-.337.737-.772 1.19-1.056.772-.48 1.348-1.18 1.996-1.801.178-.178.32-.364.266-.621-.08-.39-.035-.79-.07-1.19-.098-1.047.248-1.952.958-2.715.497-.541 1.038-1.047 1.703-1.402.435-.222.897-.373 1.35-.55.975-.382 1.925-.825 2.927-1.136.17-.053.338-.106.506-.15a1.13 1.13 0 00.586-.382c.728-.852 1.58-1.589 2.352-2.396a50.073 50.073 0 011.686-1.677c.922-.879 1.783-1.802 2.733-2.654.301-.275.612-.55.896-.843.736-.736 1.5-1.437 2.29-2.111.212-.187.354-.4.399-.71.115-.897.328-1.784.674-2.61.453-1.064 1.136-1.951 2.174-2.537.284-.16.559-.328.843-.488.524-.302 1.11-.47 1.668-.71.55-.24 1.154-.248 1.74-.275a1.01 1.01 0 00.638-.248c1.127-.95 2.139-2.033 3.204-3.053a65.77 65.77 0 012.325-2.112.29.29 0 00.106-.213c-.115-.098-5.865.053-6.717-.009-.071-.009-.142-.009-.213-.018-.204-.017-1.491.01-1.935-.017-.266-.018-2.733.097-3.558 0-.524-.062-1.083.017-1.615-.027-1.02-.098-2.04-.018-3.052-.098-.702-.053-3.062-.142-3.532-.15-1.163-.036-11.66-.409-12.255-.622-.674-.24-1.171-.674-1.641-1.215-.613-.701-.79-1.535-.95-2.387a8.71 8.71 0 01-.106-.968c-.09-1.206.32-2.262.931-3.265.267-.435.55-.87.693-1.375.142-.489.479-.817.94-1.056.337-.169.612-.453.94-.657.498-.302.888-.719 1.332-1.083.62-.523 1.349-.905 2.023-1.357.86-.577 1.695-1.18 2.6-1.686 1.57-.888 3.106-1.82 4.65-2.751.985-.595 2.014-1.118 2.972-1.748a67.466 67.466 0 013.23-2.006c.914-.54 1.82-1.109 2.751-1.615.568-.31 1.11-.674 1.669-1.002 1.206-.71 2.413-1.42 3.629-2.121a356.692 356.692 0 015.643-3.23c.914-.515 1.793-1.083 2.716-1.58a82.03 82.03 0 003.523-2.032c1.33-.79 2.68-1.562 4.002-2.369 1.206-.737 2.413-1.49 3.647-2.183 1.073-.594 2.138-1.198 3.239-1.74 1.162-.576 2.28-1.233 3.425-1.854.674-.372 1.41-.603 2.094-.95.621-.31 1.233-.63 1.82-1.002.212-.133.443-.23.674-.328 1.464-.64 2.99-1.012 4.596-.985.195 0 .417-.027.63.062.124.053.16.222.071.328-.293.346-.728.48-1.136.47-.807-.017-1.553.196-2.29.444-1.108.382-2.102 1.003-3.114 1.58-.16.097-1.41 1.25-1.925 1.641-1.154.87-2.476 1.491-3.665 2.316-1.313.905-2.715 1.669-4.055 2.52-.604.382-1.278.666-1.9 1.02-.975.551-1.934 1.137-2.91 1.696-.852.497-1.721.985-2.573 1.482-.746.434-1.491.887-2.245 1.313-.914.524-1.793 1.083-2.716 1.588-1.002.56-1.952 1.216-2.964 1.775-1.481.825-2.901 1.748-4.4 2.565-1.598.87-3.151 1.81-4.722 2.724-1.482.86-2.937 1.775-4.454 2.564-1.198.621-2.334 1.331-3.505 1.988-1.935 1.082-3.851 2.192-5.768 3.292-.337.186-.639.417-.976.603-.364.196-.719.39-1.127.506-.337.098-.648.293-.932.506-.524.39-1.189.515-1.721.896-.01.01-.027.01-.045.018-.656.568-1.366 1.092-1.934 1.74-.355.399-.56.975-.719 1.499-.106.382-.009.834.213 1.189.186.293.586.799 3.061.79 1.207-.053 2.414-.169 3.612.026.31.054.63.054.923.018.78-.097 1.562.027 2.325-.044.994-.089 1.979-.01 2.963-.071 2.574-.16 5.147-.027 7.712-.098 1.224-.035 2.449 0 3.665 0 .922-.009 1.854-.026 2.777-.018.905.01 1.82-.008 2.724-.017a39.458 39.458 0 012.29.026c.568.027 2.218-.009 2.466 0a25.1 25.1 0 002.831-.009c.843-.044 1.677-.008 2.511-.044.781-.035 1.562.018 2.343.018.4 0 3.842.009 5.165.124.558.044 1.126.018 1.685.018 1.34.009 2.69.035 4.03.035 1.694 0 3.389.027 5.075-.044.488-.018.958.098 1.455.062 1.296-.107 2.582-.204 3.842-.55.941-.258 1.864-.55 2.76-.923.524-.222 3.017-1.828 3.283-2.059.701-.594 1.482-1.064 2.174-1.668.657-.568 1.367-1.074 2.041-1.615.613-.497 1.252-.976 1.882-1.464.87-.683 1.694-1.42 2.52-2.156.62-.55 1.304-1.012 1.934-1.553.719-.604 1.49-1.154 2.2-1.766.657-.56 1.403-1.03 2.068-1.597.923-.781 1.944-1.438 2.84-2.254.541-.497 1.162-.914 1.74-1.367a84.466 84.466 0 013.078-2.307c.746-.532 1.5-1.065 2.201-1.642.79-.647 1.65-1.197 2.396-1.89.239-.222.541-.355.807-.55a23.825 23.825 0 001.961-1.588c.178-.151.4-.258.577-.408.843-.71 1.766-1.332 2.609-2.041.453-.382.985-.701 1.473-1.056.586-.417 1.171-.834 1.766-1.234 1.216-.816 2.307-1.792 3.505-2.617.603-.418 1.26-.764 1.846-1.216.55-.417 1.091-.852 1.677-1.225.239-.16.47-.301.754-.355.151.045.115.24.275.31.169-.043.222-.274.488-.3-.603-.374-1.215-.373-1.819-.409-.355-.027-.71-.062-1.056-.106-.896-.116-1.792-.063-2.689-.08a104.283 104.283 0 00-4.081 0c-.746.017-1.5.07-2.245.044-.693-.035-1.385-.027-2.077-.027-1.739-.008-3.478-.008-5.218-.062-.745-.017-1.499-.035-2.253-.08-1.234-.08-2.476-.044-3.719-.053-.426 0-.86 0-1.277-.08-.31-.062-.613.054-.923.062-.56.027-1.127.01-1.677-.008-1.251-.027-2.503.053-3.754.017-1.34-.035-2.68-.062-4.01-.088-2.015-.036-4.03-.045-6.044-.098-.825-.027-1.641-.018-2.467-.027-.807-.009-1.615-.017-2.413-.009-1.251.018-2.503-.08-3.745-.044a.444.444 0 01-.257-.062c-.08-.266.088-.71.346-.896.222-.16.461-.249.736-.249 3.15-.062 6.3 0 9.442-.044.657-.009 1.322-.044 1.979-.053.94-.01 1.881-.045 2.822-.036 1.073.01 2.156-.062 3.23-.009.896.045 1.792-.106 2.688.01.329.044.648-.027.968-.054.647-.036 1.295.08 1.934.027.825-.071 1.65-.036 2.476-.054a56.24 56.24 0 011.73 0c.754.01 1.5-.133 2.254-.097.985.053 1.97-.062 2.955-.062 1.171 0 2.351-.01 3.523-.018 1.517-.009 3.043.009 4.561.018.976.008 1.961-.071 2.928-.01 1.021.072 2.023-.044 3.035-.08.772-.017 1.553.01 2.334.027.47.01.931.098 1.402.134.133.008.275.008.364.124.195.266.496.355.78.47.648.257 1.092.692 1.331 1.376.249.71.515 1.402.63 2.147.08.523.045 1.056-.088 1.535-.116.4-.417.79-.728 1.092-.665.647-1.384 1.233-2.085 1.836a1.88 1.88 0 01-.222.142c-1.473.657-2.538 1.864-3.789 2.813-.568.426-1.154.826-1.686 1.296-1.136 1.011-2.36 1.908-3.461 2.964a27.336 27.336 0 01-2.325 1.97c-.701.54-1.393 1.1-2.05 1.686-.692.612-1.428 1.189-2.147 1.765-.594.48-1.216.932-1.837 1.376-.976.692-1.846 1.508-2.804 2.236-.497.373-1.02.71-1.473 1.127-.568.524-1.189.967-1.801 1.429-1.58 1.189-3.15 2.395-4.783 3.505-.825.568-1.58 1.233-2.352 1.863a85.035 85.035 0 01-2.999 2.343c-.719.532-1.42 1.109-2.138 1.642-1.003.754-2.05 1.446-3.062 2.182-1.153.852-2.387 1.58-3.611 2.325-.64.39-1.358.648-2.015 1.003a7.296 7.296 0 01-1.597.63c-.266.071-.444.302-.674.417-.8.4-1.598.799-2.485 1.003-1.003.23-1.979.585-2.964.896-.257.08-.506.098-.78.071-.471-.044-.933.106-1.412.071-.514-.035-6.051.186-6.77.195-.657.01-1.314-.026-2.015.01.134.354.888 3.087.959 3.202.683 1.092 1.153 2.29 1.695 3.452.408.879.852 1.748 1.304 2.61.275.54.532 1.082.763 1.64.08.196.151.382.293.551.4.044.754-.107 1.11-.23.949-.32 1.925-.533 2.919-.693.133-.018.266-.044.364-.133.603-.532 1.33-.86 2.05-1.224.088-.151.044-.32.026-.47-.142-1.137.213-2.077 1.1-2.787.754-.604 1.385-1.322 2.148-1.917.514-.408 1.047-.79 1.632-1.056.897-.417 1.757-.905 2.69-1.269.638-.248 1.313-.355 1.978-.461.435-.062.692.08 1.127.541.453-.257.923-.497 1.367-.772.55-.337 1.162-.408 1.774-.488a.854.854 0 01.586.16c.772.514 1.33 1.18 1.5 2.12.008.072.044.151.026.222-.177.879-.355 1.757-.683 2.6-.178.47-.346.941-.595 1.376-.426.745-.674 1.57-1.25 2.245-.232.266-.418.559-.524.896-.125.373-.329.648-.542.923-.16.204-.195.4-.124.657.213.754.124 1.49-.186 2.2-.16.382-.293.772-.542 1.11-.133.177-.23.372-.452.46-.187.08-.24.258-.284.427-.266.95-.825 1.704-1.482 2.422a15.283 15.283 0 00-1.296 1.624c-.31.453-.683.861-1.055 1.251-1.34 1.402-2.574 2.884-3.763 4.41-.382.489-.772.968-1.242 1.376-.382.337-.657.799-1.02 1.162-.143.142-.116.32-.027.497.32.63.612 1.287.825 1.953.23.692.621 1.313.799 2.032.106.434.363.834.559 1.242.337.71.54 1.464.834 2.192.266.647.452 1.34.71 1.987.674 1.686 1.02 3.479 1.899 5.094.496.914.87 1.908 1.135 2.92a5.32 5.32 0 01.09 2.244c-.56.675-1.075.613-1.616.923-.497.293-1.082.373-1.641.506a7.413 7.413 0 01-2.725.124c-.24-.035-.497.045-.745.053-1.447.054-2.893-.133-4.34-.124-.558 0-1.126-.017-1.685-.062-1.35-.115-2.716-.089-4.064-.23a6.059 6.059 0 00-.4-.018c-1.109.017-2.21-.089-3.319-.151-.834-.044-1.677-.009-2.573-.009-.488.763-1.349.568-2.112.63-.302.018-.612-.053-.887-.142-.408.16-.781.31-1.154.47-.088.036-.204.027-.301.018zm5.679-3.319c.089.204.213.231.355.231 1.153.009 2.298.142 3.443.16 1.065.018 2.12.15 3.185.115.16-.009.32.027.488.036 1.27.07 2.53.186 3.798.204.87.017 1.74.097 2.61.124.452.018.913.018 1.366.106.674.125 1.348.16 2.032.125.452-.018.896-.178 1.322-.346.195-.08.302-.231.382-.409.062-.15.115-.31.195-.443.115-.178.115-.346.062-.55-.151-.56-.355-1.092-.568-1.633-.506-1.296-1.047-2.574-1.5-3.878-.603-1.73-1.216-3.452-2.014-5.102-.976-2.023-1.801-4.118-2.689-6.176-.63-1.465-1.207-2.955-1.828-4.42-.931-2.2-1.837-4.418-2.733-6.637-.887-2.174-1.677-4.384-2.582-6.558-.47-1.144-.745-2.36-1.331-3.47-.577-1.09-1.02-2.253-1.526-3.38-.098-.204-.338-.568-.364-.71-.204-.32-.31-.736-.497-1.082-.222-.373-.444-.364-.612-.4-.568-.142-1.509.258-1.456.843-.053.408.195 1.287.48 1.66.133.381 1.144 2.91 1.224 3.132.195.559.408 1.11.55 1.686.142.577.302 1.145.524 1.686.47 1.162.95 2.325 1.437 3.478.462 1.1.914 2.21 1.411 3.301.497 1.092.967 2.183 1.456 3.275.656 1.446 1.25 2.92 1.854 4.383.257.621.524 1.243.79 1.855.204.488.408 1.003.603 1.5.23.585.506 1.162.746 1.748.213.523.523 1.011.656 1.544.195.763.577 1.446.852 2.174.462 1.198.94 2.387 1.393 3.585.568 1.517 1.225 3.008 1.677 4.57.08.284.24.488.542.594.257.089.426.266.337.577-.018.053 0 .115.009.169.133.62.044.79-.55.976-.621.195-1.252.346-1.908.328-.506-.009-1.003-.044-1.5-.08-1.313-.097-2.626-.124-3.93-.168-1.625-.063-3.24-.231-4.864-.205-.142 0-.292-.026-.443-.044-.755-.098-1.518-.053-2.28-.098-.347.55-.311 1.154-.604 1.624zm-9.193-22.965c-.47.302-.737.746-1.02 1.172-.356.532-.515 1.136-.675 1.757a5.276 5.276 0 00-.098 2.138c.133.905.666 1.633 1.154 2.37.381.576.914.931 1.562 1.153.354.115.718.169 1.064.284 1.118.382 2.245.763 3.381 1.11.737.221 1.553.257 2.156.86.897-.825 1.793-1.58 2.53-2.485.097-.177.523-.337.834-.399a.818.818 0 01.337.098c.266.177.31.248.346.443.035.178-.036.337-.062.524-.497.692-1.1 1.295-1.642 1.952-.532.648-1.047 1.313-1.597 1.943-.55.63-1.145 1.225-1.722 1.837.027.053.027.053.045.098 1.863-.115 3.434.355 4.357 2.12.23-.017.381-.16.541-.283.195-.16.39-.31.594-.462.666-.497 1.34-1.002 2.015-1.5.878-.647 1.704-1.366 2.529-2.076.364-.31.683-.639 1.011-.985.293-.31.4-.63.329-1.038-.133-.808-.31-1.588-.968-2.174a10.572 10.572 0 00-1.863-1.322c-.7-.4-1.402-.817-2.12-1.19-1.234-.647-2.53-1.188-3.79-1.8-.328-.16-.692-.258-1.003-.453-.798-.506-1.703-.826-2.555-1.225-.95-.444-1.943-.79-2.902-1.207-.914-.39-1.81-.825-2.768-1.26zm-15.875-.603c-.24.461-.453.923-.524 1.429-.062.425-.115.843-.195 1.268-.098.506-.204 1.012-.257 1.527-.08.807-.16 1.606-.204 2.422-.063.968-.072 1.908.177 2.858.16.603.346 1.198.55 1.774.39 1.092.923 2.103 1.73 2.964.453.488 1.03.772 1.571 1.118.683.426 1.367.808 2.148 1.02.195.054.39.125.594.187.994.302 2.006.32 3.008.098.755-.169 1.491-.453 2.272-.542a2.511 2.511 0 001.526-.718c.124-.125.266-.24.417-.32.497-.275.826-.736 1.243-1.11.212-.185.417-.443.514-.771-.346-.08-.656-.169-.976-.23-1.41-.285-2.573-.977-3.505-2.077a17.178 17.178 0 01-.994-1.287c-.586-.825-1.002-1.695-1.207-2.68-.07-.355-.026-.71-.106-1.056-.204-.896-.24-1.81-.24-2.733 0-.7.178-1.34.462-1.97.168-.364.372-.718.443-1.127-.213.32-.399.648-.594.976-.515.906-.994 1.846-1.775 2.565-.452.417-1.011.665-1.473 1.065-.266.23-.568.364-.905.452-.444.125-.878.249-1.322.355-.408.098-.843.151-1.225 0-.958-.39-1.464-1.18-1.668-2.138-.16-.755.169-1.42.56-2.041.265-.426.247-.843-.045-1.278zm-4.97.009c-.39-.133-.63.07-.896.124-1.996.4-3.984.843-5.936 1.429-.781.23-1.57.408-2.334.7-.923.356-1.828.755-2.75 1.101-.844.32-1.518.825-2.148 1.429a1.564 1.564 0 00-.47.976c-.143 1.162.07 2.29.381 3.398.222.799.595 1.544.967 2.28.195.382.257.817.453 1.199.222.435.479.852.346 1.375-.009.036.035.08.062.124.15.054.31.045.47.036.55-.035 1.03-.337 1.589-.355.381-.018.763.009 1.144-.009.506-.026.994.036 1.473.213.32.115.63.32 1.047.32a4.993 4.993 0 00-.452-.755c-.568-.736-1.003-1.561-1.473-2.36-.32-.532-.63-1.074-1.02-1.553-.25-.302-.453-.612-.577-.976-.151-.444.009-.799.434-.967.418-.169.976-.01 1.26.346.249.31.418.683.72.95.15.132.292.195.514.186.444-.018.878-.107 1.304-.204.737-.169 1.465-.338 2.201-.506.728-.169 1.482-.284 2.236-.24.169.009.355.053.55-.115-.417-1.331-.78-2.698-.514-4.135.266-1.385.585-2.76 1.42-4.011zm31.493-8.936c-.497-1.189-.967-2.325-1.446-3.47-.755-1.792-1.5-3.593-2.254-5.386a5.388 5.388 0 00-.524-.967c-.23-.328-.497-.621-.736-.94-.568-.737-.985-1.571-1.624-2.264-.701-.763-1.57-1.047-2.53-1.17a.358.358 0 00-.345.15c-.604.728-1.172 1.473-1.846 2.148-.586.585-1.145 1.224-1.73 1.81-1.039 1.029-2.06 2.076-3.097 3.105-.48.47-1.012.897-1.447 1.394a.48.48 0 00.196.266c.594.444 1.189.825 1.978.923.914.115 1.828.248 2.733.053a18.688 18.688 0 014.66-.382c.807.036 1.543.276 2.244.63.444.231.781.586 1.083 1.02.497.72.479 1.208.887 2.335.009.008.009.026.009.044.018.799.08 1.597-.213 2.36-.115.311-.169.64-.266 1.003 1.358-.985 2.848-1.721 4.268-2.662zm12.334 11.19c.621-.515 1.065-1.092 1.527-1.642.807-.958 1.544-1.979 2.378-2.92 1.073-1.215 2.174-2.404 3.203-3.664.524-.64 1.092-1.225 1.553-1.908.488-.728.462-1.136-.15-1.757-.56-.568-1.216-.816-2.006-.639-.417.098-.861.018-1.26.204a8.597 8.597 0 00-1.1.568c-.986.621-1.997 1.19-2.911 1.917-.524.417-1.145.727-1.677 1.145-.515.417-1.056.79-1.57 1.206-.303.24-.64.48-.817.87.568 1.056.878 2.2 1.384 3.265.515 1.074.896 2.21 1.446 3.355zM33.275 87.81c-.018-.24-.133-.373-.23-.524-.276-.417-.56-.834-.657-1.34-.125-.639-.497-1.11-.985-1.517-.577-.48-.95-1.127-1.331-1.748a4.903 4.903 0 01-.524-1.163c-.053-.195-.142-.4-.328-.515-.879-.532-1.482-1.34-2.094-2.12-.329-.417-.39-.444-.8-.098-.38.32-.798.56-1.26.719-1.108.373-2.244.63-3.398.816-.284.045-.585.071-.852.258.045.248.222.417.32.63.452 1.029 1.056 1.97 1.624 2.937.186.31.426.63.497.967.07.328.213.532.443.719.568.461 1.243.816 1.411 1.597.453.169.888.106 1.305.15.772.072 1.544.107 2.316.116.674.01 1.349.124 2.032.08a6.534 6.534 0 011.5.062c.31.053.656.053 1.011-.026zm10.338 2.733c-.098-.09-.169-.107-.249-.107-1.34-.08-2.68-.089-4.02-.177-1.224-.08-2.44-.098-3.664-.169a224.542 224.542 0 00-4.197-.177c-1.065-.036-2.121-.16-3.186-.116-.071 0-.151-.009-.222-.017-1.26-.09-2.529-.267-3.798-.08-.222.035-.444.009-.665-.027-.87-.15-1.757-.213-2.645-.24-.585-.017-1.03.222-1.428.586-.276.249-.506.532-.755.808-.053.062-.115.142-.044.275.382.053.808.097 1.207.097 1.615-.017 3.212.195 4.818.195.56 0 1.118.063 1.677.063 1.509 0 3 .186 4.508.222.959.017 1.917.044 2.875.106 1.358.089 2.707.15 4.064.213 1.136.053 2.272.169 3.408.115.062 0 .115 0 .177.01 1.677.115 3.355.265 5.04.257.196 0 .382.026.568.053.4.053.808.08 1.198-.018.018-.248-.062-.364-.266-.39-.177-.018-.346-.054-.523.008-.675.213-1.367.204-2.06.16-.691-.044-1.295-.24-1.632-.94-.106-.231-.115-.48-.186-.71zm15.058-1.447c.737-.053 1.42.125 2.112.089a10.539 10.539 0 011.589.027c.568.062 1.144.044 1.721.106.63.071 3.922.195 4.756.249.675.044 1.358.07 2.032.053.09 0 .178-.01.231-.098-.026-.337-3.123-6.957-3.398-7.267-.302.364-.542.772-.879 1.1-.87.843-1.854 1.553-2.76 2.352-.825.718-1.765 1.286-2.626 1.952-.595.461-1.242.78-2.006.852-.204.017-.417-.036-.612.106a.902.902 0 00-.16.48zM31.82 59.211c-.4.266-.71.657-1.118.87-.444.23-.48.54-.4.949.09.453.16.896.222 1.349.195 1.366.524 2.688 1.19 3.913.132.257.283.541.567.657.48.204.967.372 1.473.461.488.089.95-.009 1.322-.346.772-.692 1.11-1.668 1.535-2.556.222-.47.47-.816.897-1.082.568-.346 1.03-.808 1.26-1.438.133-.381.328-.798-.027-1.242-.497.532-.932 1.047-.95 1.828-.38.053-.416.382-.505.71-.879.044-.834-.719-1.092-1.225-.355.089-.7 0-1.056-.026-.913-.08-1.677-.453-2.218-1.207a8.786 8.786 0 01-.754-1.198c-.062-.151-.133-.32-.346-.417zm22.672 31.67c.115-.098.284-.08.364.044.195.275.275.56.124.932-.16.382-.15.825-.257 1.233-.01.027.026.054.053.045.133-.08.177-.213.248-.329.382-.647.621-1.366.968-2.04.292-.56.638-1.092.887-1.678.124-.292.284-.585.577-.772a.356.356 0 00.124-.47c-.266-.488-.603-.887-1.118-1.091-1.234-.489-2.494-.444-3.71.08-.771.328-1.517.7-2.129 1.322-.799.364-2.05 1.056-2.928 1.819-.151.053-.337.124-.337.364.532.186 1.047-.16 1.526-.036.434.515.523 1.828 1.011 1.65.09-.257-.07-.425-.097-.638-.071-.568.222-.94.692-.772.444.24.665.665.852 1.118.142.355.301.692.47 1.038.062.124.248.097.266-.036.053-.346.045-.683.036-1.011-.01-.31.097-.533.24-.737a.245.245 0 01.407.01c.24.372.293.789.178 1.286-.044.204-.275 1.171.284 1.145.417.026.506-1.81 1.269-2.476zm.328-25.618c.071.23.213.408.382.576.355.364.665.764.843 1.234.293.799 0 1.535-.373 2.236a.536.536 0 01-.186.186c-.355.213-.48.577-.755.977.808.248 1.474.692 2.166.949.23-.044.31-.169.417-.275.443-.435.878-.879 1.322-1.313.772-.772 1.544-1.553 2.334-2.308.381-.363.417-.381.23-.86-.346-.897-.71-1.784-1.047-2.68-.16-.417-.275-.87-.612-1.242-1.677.7-3.115 1.748-4.72 2.52zM20.098 87.225c-.444-.204-.897-.31-1.358-.417-.302-.062-.621-.062-.914-.142-.843-.23-1.704-.31-2.582-.32-.382 0-.763.063-1.145.071-.78.01-1.508.187-2.245.435-1.1.364-1.588 1.81-1.304 2.689.133.408.284.816.514 1.171.169.258.284.568.621.808.027.017.071-.01.063-.045-.293-1.082-.524-2.103.266-3.079a.16.16 0 01.275.036c.373.843.514 1.73 1.038 2.467.018.026.062.017.071-.01.275-.736.23-1.605.95-2.058.523.23.514.639.532 1.047.009.089.115.115.16.036.177-.32.346-.621.62-.861.187-.009.311.089.418.204a.575.575 0 01.15.515c-.088.39-.026.79-.017 1.198a.937.937 0 00.772-.01c.027-.106.062-.203.08-.301.133-.674.515-1.198.967-1.704.515-.576 1.162-.95 1.793-1.349.248-.16.497-.39.834-.337.39.071.798.018 1.189.116.16.035.346.053.514-.054a.697.697 0 00-.319-.337c-.56-.266-1.02-.63-1.349-1.171-.106-.186-.302-.337-.657-.32.515.577.409 1.118.063 1.722zm-15.023-1.02c.168-.054.257-.196.363-.311.338-.39.657-.79 1.02-1.154.409-.408.862-.763 1.26-1.171 1.004-1.03 1.98-2.068 3.062-3.017.133-.115.258-.24.196-.408-.098-.284-.151-.604-.435-.781-.373.089-.675.32-.87.594-.381.542-.887.959-1.393 1.331-.586.426-1.038.985-1.606 1.42-.31.24-.604.55-.905.826-.71.638-1.473 1.206-2.006 2.023-.514.772-1.047 1.526-1.393 2.395-.213.533-.044.879.293 1.225.106.115.408.48.568.586.417.08.852.293 1.33.381.33.063.666.151.933.364a.843.843 0 00.568.187c.514.008 1.029.008 1.544.07.488.063.993.01 1.552.01-.275-.666-.399-1.332-.514-1.98a2.382 2.382 0 00-.967-.017c-.985.16-1.944.15-2.769-.435-.195-.035-.302.133-.461.098-.56-.204-.648-.329-.622-.897.036-.594.169-1.127.764-1.428.168-.08.319.08.488.088zm28.723-13.781c.116.07.205.044.293.026.728-.106 1.367-.443 2.015-.78.905-.48 1.73-1.03 2.369-1.864.48-.621.426-1.251.177-1.872-.284-.72-.62-1.402-.745-2.174-.018-.08-.009-.178-.08-.222-.612 1.863-1.562 3.434-3.647 4.073 0 .31-.062.674.018 1.011.106.524 0 .959-.293 1.376a.514.514 0 00-.107.426zm30.774 2.804c.036-.036.071-.08.107-.116-.808-1.907-1.606-3.815-2.423-5.759-.32.231-.603.409-.86.622-.701.585-1.367 1.233-2.228 1.588-.31.124-.514.32-.7.603 2.129.843 4.152 1.89 6.104 3.062zm2.476-12.938c1.34-1.26 2.76-2.298 4.233-3.292-.905-.63-4.526.089-5.324.843.293.834.665 1.633 1.091 2.449zM84.53 50.834c-.719.816-1.526 1.5-2.422 2.13-.897.62-1.802 1.171-2.84 1.58.47.195.959.097 1.429.221.479.133.896.355 1.34.595a5.86 5.86 0 001.384-1.997c.23-.541.453-1.082.754-1.597.16-.275.373-.56.355-.932zM28.12 62.396c-1.81 1.766-3.576 3.479-5.341 5.2a.49.49 0 00.062.08c.346-.07.683-.16 1.029-.213.337-.053.612-.195.834-.443.604-.666 1.34-1.207 1.952-1.864.275-.293.55-.577.879-.807.346-.249.514-.63.843-.852-.071-.373-.053-.701-.258-1.1zM12.511 82.602c-.213.035-.293.195-.409.301-.585.542-1.153 1.1-1.712 1.669-.56.568-1.234.976-1.81 1.517-.231.222-.497.39-.657.683.461.338 1.127.222 1.358-.266.363-.79 1.056-1.189 1.783-1.5.879-.381 1.81-.638 2.769-.665.106-.115.204-.204.195-.4-.692-.239-.994-.922-1.517-1.34zm29.176-32.975c-.213-.142-.488-.035-.63-.026-.381.008-.639.452-.914.727-.55.56-1.127 1.083-1.686 1.624-.115.116-.248.222-.222.453.329.257.675.532 1.047.834.773-.843 1.678-1.5 2.36-2.307.338-.24.507-.47.578-.604.177-.381-.417-.603-.533-.7zM51.83 83.888c.727-.639 1.473-1.224 2.076-1.996-.896-.133-1.712-.47-2.6-.675-.106.977.435 1.766.524 2.671zM73.09 54.534c.621.169 1.092.586 1.633.914.612-.47 1.198-.914 1.783-1.366a41.33 41.33 0 01-.026-.107c-1.092.426-2.21.648-3.39.56zm8.28 3.834c.168-.524-.107-.86-.373-1.172-.373-.434-1.172-.594-1.793-.363.87.32 1.464.94 2.165 1.535zm-9.558-1.633c.231.15.462.31.683.462.24.16.453.363.63.603.222-.098.418-.195.542-.373-.364-.852-1.074-1.109-1.855-.692z"
|
|
14
|
+
fill={fill}
|
|
15
|
+
/>
|
|
16
|
+
<Path
|
|
17
|
+
d="M94.077 5.765c-.692.08-10.621-.053-11.012-.204-.541-.213-.719-.684-.763-1.198-.045-.515.16-.914.665-1.127.267-.116.444-.337.675-.497.204-.142.417-.249.657-.24.958.036 1.916-.106 2.874-.097 2.272.009 4.553 0 6.824.009.657 0 1.323-.01 1.98.08.203.026.407-.125.647-.01.532.258 1.02.844.674 1.74-.062.15-.106.31-.177.452-.178.382-.4.692-.86.817-.72.186-1.43.346-2.184.275zM46.497 37.178c-.346.062-.64.213-.985.266-.133.017-.985.275-3.47.142-.257-.018-.506.062-.745.017-.586-.124-1.198-.15-1.775-.328-.994-.301-1.588-.87-1.544-1.96.018-.391.248-.658.462-.924.514-.639 1.224-1.002 1.996-1.233.621-.187 1.251-.355 1.864-.568.86-.293 1.765-.355 2.653-.453.434-.044.87-.115 1.322-.088.878.062 1.766.124 2.618.355a4.2 4.2 0 011.268.612c.675.461.79 1.313.32 2.085a2.86 2.86 0 01-1.092 1.065c-.692.4-1.446.621-2.182.896-.196.089-.64.107-.71.116zm-5.963-1.828c-.107.044-.107.195-.01.248.311.169.586.284.897.355.355.071.71.027 1.056.124.719.196 1.455.178 2.192.204a.417.417 0 00.381-.186c.258-.364.64-.515 1.047-.612.63-.151 1.278-.249 1.9-.444.328-.098.674-.186.851-.523-.044-.054-.053-.09-.08-.107a.338.338 0 00-.115-.053c-1.047-.222-2.094-.4-3.159-.169a3.289 3.289 0 01-.657.062c-.417-.009-.816.089-1.224.169-.808.177-1.57.497-2.378.683-.222.071-.444.133-.701.249z"
|
|
18
|
+
fill={fill}
|
|
19
|
+
/>
|
|
20
|
+
</BaseSvg>
|
|
21
|
+
);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export default LiftSketch;
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import
|
|
3
|
-
import type {
|
|
2
|
+
import { Path, Rect } from 'react-native-svg';
|
|
3
|
+
import type { IllustrationSvgProps } from '../types';
|
|
4
|
+
import BaseSvg from '../BaseSvg';
|
|
4
5
|
|
|
5
|
-
const List = ({
|
|
6
|
+
const List = ({
|
|
7
|
+
stroke,
|
|
8
|
+
fill,
|
|
9
|
+
testID,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
}: IllustrationSvgProps) => {
|
|
6
13
|
return (
|
|
7
|
-
<
|
|
14
|
+
<BaseSvg width={width} height={height} testID={testID}>
|
|
8
15
|
<Rect
|
|
9
16
|
x="0.199951"
|
|
10
17
|
y="11.3684"
|
|
@@ -30,7 +37,7 @@ const List = ({ stroke, fill, testID }: StatusSvgProps) => {
|
|
|
30
37
|
d="M33.0421 20C31.4724 20 30.2 21.2725 30.2 22.8421C30.2 24.4118 31.4724 25.6842 33.0421 25.6842C34.6117 25.6842 35.8842 24.4118 35.8842 22.8421C35.8842 21.2725 34.6117 20 33.0421 20ZM39.6736 20.9474C38.6272 20.9474 37.7789 21.7957 37.7789 22.8421C37.7789 23.8885 38.6272 24.7368 39.6736 24.7368H51.0421C52.0885 24.7368 52.9368 23.8885 52.9368 22.8421C52.9368 21.7957 52.0885 20.9474 51.0421 20.9474H39.6736ZM39.6737 28.5263C38.6272 28.5263 37.7789 29.3746 37.7789 30.421C37.7789 31.4675 38.6272 32.3158 39.6737 32.3158H51.0421C52.0885 32.3158 52.9368 31.4675 52.9368 30.421C52.9368 29.3746 52.0885 28.5263 51.0421 28.5263H39.6737ZM37.7789 38C37.7789 36.9536 38.6272 36.1053 39.6736 36.1053H51.0421C52.0885 36.1053 52.9368 36.9536 52.9368 38C52.9368 39.0464 52.0885 39.8947 51.0421 39.8947H39.6736C38.6272 39.8947 37.7789 39.0464 37.7789 38ZM30.2 30.4211C30.2 28.8514 31.4724 27.5789 33.0421 27.5789C34.6117 27.5789 35.8842 28.8514 35.8842 30.4211C35.8842 31.9907 34.6117 33.2632 33.0421 33.2632C31.4724 33.2632 30.2 31.9907 30.2 30.4211ZM33.0421 35.1579C31.4724 35.1579 30.2 36.4304 30.2 38C30.2 39.5697 31.4724 40.8421 33.0421 40.8421C34.6117 40.8421 35.8842 39.5697 35.8842 38C35.8842 36.4304 34.6117 35.1579 33.0421 35.1579Z"
|
|
31
38
|
fill={stroke}
|
|
32
39
|
/>
|
|
33
|
-
</
|
|
40
|
+
</BaseSvg>
|
|
34
41
|
);
|
|
35
42
|
};
|
|
36
43
|
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import
|
|
3
|
-
import type {
|
|
2
|
+
import { Path, Rect } from 'react-native-svg';
|
|
3
|
+
import type { IllustrationSvgProps } from '../types';
|
|
4
|
+
import BaseSvg from '../BaseSvg';
|
|
4
5
|
|
|
5
|
-
const Location = ({
|
|
6
|
+
const Location = ({
|
|
7
|
+
stroke,
|
|
8
|
+
fill,
|
|
9
|
+
testID,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
}: IllustrationSvgProps) => {
|
|
6
13
|
return (
|
|
7
|
-
<
|
|
14
|
+
<BaseSvg width={width} height={height} testID={testID}>
|
|
8
15
|
<Rect
|
|
9
16
|
x="0.615723"
|
|
10
17
|
y="12.2122"
|
|
@@ -30,7 +37,7 @@ const Location = ({ stroke, fill, testID }: StatusSvgProps) => {
|
|
|
30
37
|
stroke={stroke}
|
|
31
38
|
strokeWidth="0.45"
|
|
32
39
|
/>
|
|
33
|
-
</
|
|
40
|
+
</BaseSvg>
|
|
34
41
|
);
|
|
35
42
|
};
|
|
36
43
|
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import
|
|
3
|
-
import type {
|
|
2
|
+
import { G, Path, Defs, ClipPath } from 'react-native-svg';
|
|
3
|
+
import type { IllustrationSvgProps } from '../types';
|
|
4
|
+
import BaseSvg from '../BaseSvg';
|
|
4
5
|
|
|
5
|
-
const Lock = ({
|
|
6
|
+
const Lock = ({
|
|
7
|
+
stroke,
|
|
8
|
+
fill,
|
|
9
|
+
testID,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
}: IllustrationSvgProps) => {
|
|
6
13
|
return (
|
|
7
|
-
<
|
|
14
|
+
<BaseSvg width={width} height={height} testID={testID}>
|
|
8
15
|
<G clipPath="url(#clip0_21932_5671)">
|
|
9
16
|
<Path
|
|
10
17
|
d="M0 41.684c0-9.615 0-14.423 1.619-18.198a20 20 0 0110.499-10.499c3.775-1.619 8.582-1.619 18.198-1.619 9.615 0 14.423 0 18.198 1.62a20 20 0 0110.499 10.498c1.619 3.775 1.619 8.583 1.619 18.198 0 9.616 0 14.423-1.62 18.198a20 20 0 01-10.498 10.5C44.739 72 39.93 72 30.316 72c-9.616 0-14.423 0-18.198-1.619a20 20 0 01-10.5-10.499C0 56.107 0 51.3 0 41.684z"
|
|
@@ -24,7 +31,7 @@ const Lock = ({ stroke, fill, testID }: StatusSvgProps) => {
|
|
|
24
31
|
<Path fill="#fff" d="M0 0H72V72H0z" />
|
|
25
32
|
</ClipPath>
|
|
26
33
|
</Defs>
|
|
27
|
-
</
|
|
34
|
+
</BaseSvg>
|
|
28
35
|
);
|
|
29
36
|
};
|
|
30
37
|
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import
|
|
3
|
-
import type {
|
|
2
|
+
import { Path, Rect } from 'react-native-svg';
|
|
3
|
+
import type { IllustrationSvgProps } from '../types';
|
|
4
|
+
import BaseSvg from '../BaseSvg';
|
|
4
5
|
|
|
5
|
-
const Merge = ({
|
|
6
|
+
const Merge = ({
|
|
7
|
+
stroke,
|
|
8
|
+
fill,
|
|
9
|
+
testID,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
}: IllustrationSvgProps) => {
|
|
6
13
|
return (
|
|
7
|
-
<
|
|
14
|
+
<BaseSvg width={width} height={height} testID={testID}>
|
|
8
15
|
<Rect
|
|
9
16
|
x="0.100098"
|
|
10
17
|
y="12.2122"
|
|
@@ -52,7 +59,7 @@ const Merge = ({ stroke, fill, testID }: StatusSvgProps) => {
|
|
|
52
59
|
fill="transparent"
|
|
53
60
|
strokeWidth="4"
|
|
54
61
|
/>
|
|
55
|
-
</
|
|
62
|
+
</BaseSvg>
|
|
56
63
|
);
|
|
57
64
|
};
|
|
58
65
|
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import
|
|
3
|
-
import type {
|
|
2
|
+
import { G, Path, Defs, ClipPath } from 'react-native-svg';
|
|
3
|
+
import type { IllustrationSvgProps } from '../types';
|
|
4
|
+
import BaseSvg from '../BaseSvg';
|
|
4
5
|
|
|
5
|
-
const NoResult = ({
|
|
6
|
+
const NoResult = ({
|
|
7
|
+
stroke,
|
|
8
|
+
fill,
|
|
9
|
+
testID,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
}: IllustrationSvgProps) => {
|
|
6
13
|
return (
|
|
7
|
-
<
|
|
14
|
+
<BaseSvg width={width} height={height} testID={testID}>
|
|
8
15
|
<G clipPath="url(#clip0_21888_4920)">
|
|
9
16
|
<Path
|
|
10
17
|
d="M0 41.684c0-9.615 0-14.423 1.619-18.198a20 20 0 0110.499-10.499c3.775-1.619 8.582-1.619 18.198-1.619 9.615 0 14.423 0 18.198 1.62a20 20 0 0110.499 10.498c1.619 3.775 1.619 8.583 1.619 18.198 0 9.616 0 14.423-1.62 18.198a20 20 0 01-10.498 10.5C44.739 72 39.93 72 30.316 72c-9.616 0-14.423 0-18.198-1.619a20 20 0 01-10.5-10.499C0 56.107 0 51.3 0 41.684z"
|
|
@@ -28,7 +35,7 @@ const NoResult = ({ stroke, fill, testID }: StatusSvgProps) => {
|
|
|
28
35
|
<Path fill="#fff" d="M0 0H72V72H0z" />
|
|
29
36
|
</ClipPath>
|
|
30
37
|
</Defs>
|
|
31
|
-
</
|
|
38
|
+
</BaseSvg>
|
|
32
39
|
);
|
|
33
40
|
};
|
|
34
41
|
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import
|
|
3
|
-
import type {
|
|
2
|
+
import { Path, Rect } from 'react-native-svg';
|
|
3
|
+
import type { IllustrationSvgProps } from '../types';
|
|
4
|
+
import BaseSvg from '../BaseSvg';
|
|
4
5
|
|
|
5
|
-
const Notifications = ({
|
|
6
|
+
const Notifications = ({
|
|
7
|
+
stroke,
|
|
8
|
+
fill,
|
|
9
|
+
testID,
|
|
10
|
+
width,
|
|
11
|
+
height,
|
|
12
|
+
}: IllustrationSvgProps) => {
|
|
6
13
|
return (
|
|
7
|
-
<
|
|
14
|
+
<BaseSvg width={width} height={height} testID={testID}>
|
|
8
15
|
<Rect
|
|
9
16
|
y="12.3684"
|
|
10
17
|
width="60.6316"
|
|
@@ -19,7 +26,7 @@ const Notifications = ({ stroke, fill, testID }: StatusSvgProps) => {
|
|
|
19
26
|
d="M41.3158 57.6316C36.4516 57.6316 33.0101 57.6293 30.3073 57.4391C27.6421 57.2516 25.9982 56.8957 24.6942 56.3366C20.9204 54.7183 17.9133 51.7111 16.295 47.9374C15.7358 46.6334 15.38 44.9895 15.1925 42.3242C15.0023 39.6215 15 36.18 15 31.3158C15 26.4516 15.0023 23.0101 15.1925 20.3073C15.38 17.6421 15.7358 15.9982 16.295 14.6942C17.9133 10.9204 20.9204 7.91326 24.6942 6.29499C25.9982 5.73584 27.6421 5.38001 30.3073 5.19248C33.0101 5.0023 36.4516 5 41.3158 5C46.18 5 49.6215 5.0023 52.3242 5.19248C54.9895 5.38001 56.6334 5.73584 57.9374 6.29499C61.7111 7.91326 64.7183 10.9204 66.3366 14.6942C66.8957 15.9982 67.2516 17.6421 67.4391 20.3073C67.6293 23.0101 67.6316 26.4516 67.6316 31.3158C67.6316 36.18 67.6293 39.6215 67.4391 42.3242C67.2516 44.9895 66.8957 46.6334 66.3366 47.9374C64.7183 51.7111 61.7111 54.7183 57.9374 56.3366C56.6334 56.8957 54.9895 57.2516 52.3242 57.4391C49.6215 57.6293 46.18 57.6316 41.3158 57.6316ZM11 31.3158C11 21.7004 11 16.8927 12.6187 13.1178C14.6416 8.40056 18.4006 4.64158 23.1178 2.61874C26.8927 1 31.7004 1 41.3158 1C50.9312 1 55.7389 1 59.5138 2.61874C64.231 4.64158 67.99 8.40056 70.0128 13.1178C71.6316 16.8927 71.6316 21.7004 71.6316 31.3158C71.6316 40.9312 71.6316 45.7389 70.0128 49.5138C67.99 54.231 64.231 57.99 59.5138 60.0128C55.7389 61.6316 50.9312 61.6316 41.3158 61.6316C31.7004 61.6316 26.8927 61.6316 23.1178 60.0128C18.4006 57.99 14.6416 54.231 12.6187 49.5138C11 45.7389 11 40.9312 11 31.3158ZM49.1787 28.1109C49.1798 28.1439 49.1803 28.1771 49.1803 28.2103V34.4277C49.1803 34.4429 49.1802 34.4581 49.18 34.4733H50.6539C51.4678 34.4733 52.1276 35.1331 52.1276 35.947C52.1276 36.7609 51.4678 37.4206 50.6539 37.4206H31.4737C30.6598 37.4206 30 36.7609 30 35.947C30 35.1331 30.6598 34.4733 31.4737 34.4733H33.7073C33.7071 34.4581 33.7069 34.4429 33.7069 34.4277V28.2103C33.7069 28.1771 33.7075 28.1439 33.7085 28.111C33.7075 28.05 33.7069 27.9889 33.7069 27.9277C33.7069 23.5781 36.6526 19 41.4436 19C46.2346 19 49.1803 23.5781 49.1803 27.9277C49.1803 27.9889 49.1798 28.05 49.1787 28.1109ZM36.6521 34.4277V28.2105L36.6574 28.2103C36.6539 28.1167 36.6521 28.0225 36.6521 27.9277C36.6521 27.833 36.6539 27.7388 36.6574 27.6451C36.7765 24.4987 38.8738 21.993 41.4436 21.993C44.0134 21.993 46.1107 24.4987 46.2298 27.6451C46.2334 27.7388 46.2352 27.833 46.2352 27.9277C46.2352 28.0225 46.2334 28.1167 46.2298 28.2103L46.2352 28.2105V34.4277H36.6521ZM41.1865 45C38.8173 45 36.8684 43.2009 36.6314 40.8943H39.1591C39.3734 41.8157 40.1998 42.5023 41.1865 42.5023C42.1731 42.5023 42.9995 41.8157 43.2138 40.8943H45.7415C45.5045 43.2009 43.5556 45 41.1865 45Z"
|
|
20
27
|
fill={stroke}
|
|
21
28
|
/>
|
|
22
|
-
</
|
|
29
|
+
</BaseSvg>
|
|
23
30
|
);
|
|
24
31
|
};
|
|
25
32
|
|