@pagopa/io-app-design-system 5.0.0 → 5.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/lib/commonjs/components/tabs/TabItem.js +4 -3
  2. package/lib/commonjs/components/tabs/TabItem.js.map +1 -1
  3. package/lib/commonjs/components/textInput/TextInputValidation.js.map +1 -1
  4. package/lib/module/components/tabs/TabItem.js +5 -4
  5. package/lib/module/components/tabs/TabItem.js.map +1 -1
  6. package/lib/module/components/textInput/TextInputValidation.js +1 -1
  7. package/lib/module/components/textInput/TextInputValidation.js.map +1 -1
  8. package/lib/typescript/components/tabs/TabItem.d.ts +13 -2
  9. package/lib/typescript/components/tabs/TabItem.d.ts.map +1 -1
  10. package/lib/typescript/components/textInput/TextInputValidation.d.ts +7 -6
  11. package/lib/typescript/components/textInput/TextInputValidation.d.ts.map +1 -1
  12. package/lib/typescript/utils/types.d.ts +3 -0
  13. package/lib/typescript/utils/types.d.ts.map +1 -1
  14. package/package.json +1 -1
  15. package/src/components/tabs/TabItem.tsx +162 -151
  16. package/src/components/textInput/TextInputValidation.tsx +5 -6
  17. package/src/utils/types.ts +3 -0
  18. package/lib/commonjs/components/icons/svg/IconEmailLegal.js +0 -34
  19. package/lib/commonjs/components/icons/svg/IconEmailLegal.js.map +0 -1
  20. package/lib/commonjs/components/icons/svg/originals/IconEmailLegal.svg +0 -16
  21. package/lib/commonjs/components/pictograms/svg/PictogramDonation.js +0 -40
  22. package/lib/commonjs/components/pictograms/svg/PictogramDonation.js.map +0 -1
  23. package/lib/commonjs/components/pictograms/svg/PictogramGenericError.js +0 -55
  24. package/lib/commonjs/components/pictograms/svg/PictogramGenericError.js.map +0 -1
  25. package/lib/commonjs/components/pictograms/svg/PictogramSetup.js +0 -42
  26. package/lib/commonjs/components/pictograms/svg/PictogramSetup.js.map +0 -1
  27. package/lib/commonjs/components/pictograms/svg/originals/PictogramDonation.svg +0 -18
  28. package/lib/commonjs/components/pictograms/svg/originals/PictogramGenericError.svg +0 -1
  29. package/lib/commonjs/components/pictograms/svg/originals/PictogramSetup.svg +0 -22
  30. package/lib/module/components/icons/svg/IconEmailLegal.js +0 -26
  31. package/lib/module/components/icons/svg/IconEmailLegal.js.map +0 -1
  32. package/lib/module/components/icons/svg/originals/IconEmailLegal.svg +0 -16
  33. package/lib/module/components/pictograms/svg/PictogramDonation.js +0 -30
  34. package/lib/module/components/pictograms/svg/PictogramDonation.js.map +0 -1
  35. package/lib/module/components/pictograms/svg/PictogramGenericError.js +0 -47
  36. package/lib/module/components/pictograms/svg/PictogramGenericError.js.map +0 -1
  37. package/lib/module/components/pictograms/svg/PictogramSetup.js +0 -32
  38. package/lib/module/components/pictograms/svg/PictogramSetup.js.map +0 -1
  39. package/lib/module/components/pictograms/svg/originals/PictogramDonation.svg +0 -18
  40. package/lib/module/components/pictograms/svg/originals/PictogramGenericError.svg +0 -1
  41. package/lib/module/components/pictograms/svg/originals/PictogramSetup.svg +0 -22
  42. package/lib/typescript/components/icons/svg/IconEmailLegal.d.ts +0 -5
  43. package/lib/typescript/components/icons/svg/IconEmailLegal.d.ts.map +0 -1
  44. package/lib/typescript/components/pictograms/svg/PictogramDonation.d.ts +0 -8
  45. package/lib/typescript/components/pictograms/svg/PictogramDonation.d.ts.map +0 -1
  46. package/lib/typescript/components/pictograms/svg/PictogramGenericError.d.ts +0 -5
  47. package/lib/typescript/components/pictograms/svg/PictogramGenericError.d.ts.map +0 -1
  48. package/lib/typescript/components/pictograms/svg/PictogramSetup.d.ts +0 -8
  49. package/lib/typescript/components/pictograms/svg/PictogramSetup.d.ts.map +0 -1
  50. package/src/components/icons/svg/IconEmailLegal.tsx +0 -24
  51. package/src/components/icons/svg/originals/IconEmailLegal.svg +0 -16
  52. package/src/components/pictograms/svg/PictogramDonation.tsx +0 -33
  53. package/src/components/pictograms/svg/PictogramGenericError.tsx +0 -58
  54. package/src/components/pictograms/svg/PictogramSetup.tsx +0 -33
  55. package/src/components/pictograms/svg/originals/PictogramDonation.svg +0 -18
  56. package/src/components/pictograms/svg/originals/PictogramGenericError.svg +0 -1
  57. package/src/components/pictograms/svg/originals/PictogramSetup.svg +0 -22
@@ -1,5 +1,10 @@
1
- import React, { useCallback, useMemo } from "react";
2
- import { GestureResponderEvent, Pressable, StyleSheet } from "react-native";
1
+ import React, { forwardRef, Ref, useCallback, useMemo } from "react";
2
+ import {
3
+ GestureResponderEvent,
4
+ Pressable,
5
+ StyleSheet,
6
+ View
7
+ } from "react-native";
3
8
  import ReactNativeHapticFeedback from "react-native-haptic-feedback";
4
9
  import Animated, {
5
10
  interpolateColor,
@@ -58,160 +63,166 @@ type ColorStates = {
58
63
 
59
64
  const DISABLED_OPACITY = 0.5;
60
65
 
61
- const TabItem = ({
62
- label,
63
- color = "light",
64
- selected = false,
65
- fullWidth = false,
66
- accessibilityLabel,
67
- accessibilityHint,
68
- testID,
69
- onPress,
70
- disabled = false,
71
- icon,
72
- iconSelected
73
- }: TabItem) => {
74
- const { onPressIn, onPressOut, scaleAnimatedStyle } =
75
- useScaleAnimation("medium");
76
- const theme = useIOTheme();
77
- const reducedMotion = useReducedMotion();
78
- const { newTypefaceEnabled } = useIONewTypeface();
79
-
80
- const mapColorStates: Record<
81
- NonNullable<TabItem["color"]>,
82
- ColorStates
83
- > = useMemo(
84
- () => ({
85
- light: {
86
- border: {
87
- default: IOColors[theme["tab-item-border-default"]],
88
- selected: hexToRgba(
89
- IOColors[theme["tab-item-foreground-selected"]],
90
- 0.5
91
- )
92
- },
93
- background: {
94
- default: hexToRgba(
95
- IOColors[theme["tab-item-background-selected"]],
96
- 0
97
- ),
98
- selected: hexToRgba(
99
- IOColors[theme["tab-item-background-selected"]],
100
- 0.25
101
- ),
102
- pressed: IOColors[theme["appBackground-primary"]]
66
+ const TabItem = forwardRef(
67
+ (
68
+ {
69
+ label,
70
+ color = "light",
71
+ selected = false,
72
+ fullWidth = false,
73
+ accessibilityLabel,
74
+ accessibilityHint,
75
+ testID,
76
+ onPress,
77
+ disabled = false,
78
+ icon,
79
+ iconSelected
80
+ }: TabItem,
81
+ ref: Ref<View>
82
+ ) => {
83
+ const { onPressIn, onPressOut, scaleAnimatedStyle } =
84
+ useScaleAnimation("medium");
85
+ const theme = useIOTheme();
86
+ const reducedMotion = useReducedMotion();
87
+ const { newTypefaceEnabled } = useIONewTypeface();
88
+
89
+ const mapColorStates: Record<
90
+ NonNullable<TabItem["color"]>,
91
+ ColorStates
92
+ > = useMemo(
93
+ () => ({
94
+ light: {
95
+ border: {
96
+ default: IOColors[theme["tab-item-border-default"]],
97
+ selected: hexToRgba(
98
+ IOColors[theme["tab-item-foreground-selected"]],
99
+ 0.5
100
+ )
101
+ },
102
+ background: {
103
+ default: hexToRgba(
104
+ IOColors[theme["tab-item-background-selected"]],
105
+ 0
106
+ ),
107
+ selected: hexToRgba(
108
+ IOColors[theme["tab-item-background-selected"]],
109
+ 0.25
110
+ ),
111
+ pressed: IOColors[theme["appBackground-primary"]]
112
+ },
113
+ foreground: {
114
+ default: theme["tab-item-foreground-default"],
115
+ selected: theme["tab-item-foreground-selected"],
116
+ disabled: "grey-700"
117
+ }
103
118
  },
104
- foreground: {
105
- default: theme["tab-item-foreground-default"],
106
- selected: theme["tab-item-foreground-selected"],
107
- disabled: "grey-700"
119
+ dark: {
120
+ border: {
121
+ default: hexToRgba(IOColors.white, 0),
122
+ selected: IOColors.white
123
+ },
124
+ background: {
125
+ default: hexToRgba(IOColors.white, 0.1),
126
+ selected: IOColors.white,
127
+ pressed: IOColors.white
128
+ },
129
+ foreground: {
130
+ default: "white",
131
+ selected: "black",
132
+ disabled: "white"
133
+ }
108
134
  }
109
- },
110
- dark: {
111
- border: {
112
- default: hexToRgba(IOColors.white, 0),
113
- selected: IOColors.white
114
- },
115
- background: {
116
- default: hexToRgba(IOColors.white, 0.1),
117
- selected: IOColors.white,
118
- pressed: IOColors.white
119
- },
120
- foreground: {
121
- default: "white",
122
- selected: "black",
123
- disabled: "white"
135
+ }),
136
+ [theme]
137
+ );
138
+
139
+ const itemState: TabItemState = selected
140
+ ? "selected"
141
+ : disabled
142
+ ? "disabled"
143
+ : "default";
144
+
145
+ const foregroundColor = mapColorStates[color].foreground[itemState];
146
+
147
+ const selectedStateTransition = useDerivedValue(() =>
148
+ withSpring(selected ? 1 : 0, IOSpringValues.selection)
149
+ );
150
+
151
+ // Interpolate animation values from `pressed` values
152
+ const animatedStyle = useAnimatedStyle(
153
+ () => ({
154
+ backgroundColor: interpolateColor(
155
+ selectedStateTransition.value,
156
+ [0, 1],
157
+ [
158
+ mapColorStates[color].background.default,
159
+ mapColorStates[color].background.selected
160
+ ]
161
+ ),
162
+ borderColor: interpolateColor(
163
+ selectedStateTransition.value,
164
+ [0, 1],
165
+ [
166
+ mapColorStates[color].border.default,
167
+ mapColorStates[color].border.selected
168
+ ]
169
+ )
170
+ }),
171
+ [selectedStateTransition]
172
+ );
173
+
174
+ const activeIcon = selected ? iconSelected ?? icon : icon;
175
+
176
+ const handleOnPress = useCallback(
177
+ (event: GestureResponderEvent) => {
178
+ if (onPress) {
179
+ ReactNativeHapticFeedback.trigger("impactLight");
180
+ onPress(event);
124
181
  }
125
- }
126
- }),
127
- [theme]
128
- );
129
-
130
- const itemState: TabItemState = selected
131
- ? "selected"
132
- : disabled
133
- ? "disabled"
134
- : "default";
135
-
136
- const foregroundColor = mapColorStates[color].foreground[itemState];
137
-
138
- const selectedStateTransition = useDerivedValue(() =>
139
- withSpring(selected ? 1 : 0, IOSpringValues.selection)
140
- );
141
-
142
- // Interpolate animation values from `pressed` values
143
- const animatedStyle = useAnimatedStyle(
144
- () => ({
145
- backgroundColor: interpolateColor(
146
- selectedStateTransition.value,
147
- [0, 1],
148
- [
149
- mapColorStates[color].background.default,
150
- mapColorStates[color].background.selected
151
- ]
152
- ),
153
- borderColor: interpolateColor(
154
- selectedStateTransition.value,
155
- [0, 1],
156
- [
157
- mapColorStates[color].border.default,
158
- mapColorStates[color].border.selected
159
- ]
160
- )
161
- }),
162
- [selectedStateTransition]
163
- );
164
-
165
- const activeIcon = selected ? iconSelected ?? icon : icon;
166
-
167
- const handleOnPress = useCallback(
168
- (event: GestureResponderEvent) => {
169
- if (onPress) {
170
- ReactNativeHapticFeedback.trigger("impactLight");
171
- onPress(event);
172
- }
173
- },
174
- [onPress]
175
- );
176
-
177
- return (
178
- <Pressable
179
- accessibilityLabel={accessibilityLabel}
180
- accessibilityHint={accessibilityHint}
181
- accessibilityRole={"button"}
182
- accessibilityState={{ selected }}
183
- testID={testID}
184
- onPress={handleOnPress}
185
- onPressIn={onPressIn}
186
- onPressOut={onPressOut}
187
- accessible={true}
188
- disabled={disabled}
189
- >
190
- <Animated.View
191
- style={[
192
- styles.container,
193
- { columnGap: 4 },
194
- !disabled && !reducedMotion && scaleAnimatedStyle,
195
- animatedStyle,
196
- fullWidth && styles.fullWidth,
197
- disabled && { opacity: DISABLED_OPACITY }
198
- ]}
182
+ },
183
+ [onPress]
184
+ );
185
+
186
+ return (
187
+ <Pressable
188
+ ref={ref}
189
+ accessibilityLabel={accessibilityLabel}
190
+ accessibilityHint={accessibilityHint}
191
+ accessibilityRole={"button"}
192
+ accessibilityState={{ selected }}
193
+ testID={testID}
194
+ onPress={handleOnPress}
195
+ onPressIn={onPressIn}
196
+ onPressOut={onPressOut}
197
+ accessible={true}
198
+ disabled={disabled}
199
199
  >
200
- {activeIcon && (
201
- <Icon name={activeIcon} color={foregroundColor} size={16} />
202
- )}
203
- <IOText
204
- size={14}
205
- font={newTypefaceEnabled ? "Titillio" : "TitilliumSansPro"}
206
- weight="Semibold"
207
- color={foregroundColor}
200
+ <Animated.View
201
+ style={[
202
+ styles.container,
203
+ { columnGap: 4 },
204
+ !disabled && !reducedMotion && scaleAnimatedStyle,
205
+ animatedStyle,
206
+ fullWidth && styles.fullWidth,
207
+ disabled && { opacity: DISABLED_OPACITY }
208
+ ]}
208
209
  >
209
- {label}
210
- </IOText>
211
- </Animated.View>
212
- </Pressable>
213
- );
214
- };
210
+ {activeIcon && (
211
+ <Icon name={activeIcon} color={foregroundColor} size={16} />
212
+ )}
213
+ <IOText
214
+ size={14}
215
+ font={newTypefaceEnabled ? "Titillio" : "TitilliumSansPro"}
216
+ weight="Semibold"
217
+ color={foregroundColor}
218
+ >
219
+ {label}
220
+ </IOText>
221
+ </Animated.View>
222
+ </Pressable>
223
+ );
224
+ }
225
+ );
215
226
 
216
227
  const styles = StyleSheet.create({
217
228
  container: {
@@ -1,13 +1,14 @@
1
1
  import * as React from "react";
2
2
  import {
3
+ forwardRef,
3
4
  useCallback,
5
+ useImperativeHandle,
4
6
  useMemo,
5
- useState,
6
- forwardRef,
7
- useImperativeHandle
7
+ useState
8
8
  } from "react";
9
9
  import { AccessibilityInfo, View } from "react-native";
10
10
  import Animated from "react-native-reanimated";
11
+ import { TextInputValidationRefProps } from "src/utils/types";
11
12
  import { useIOTheme } from "../../core";
12
13
  import { IOColors } from "../../core/IOColors";
13
14
  import {
@@ -57,9 +58,7 @@ function isValidationWithOptions(
57
58
  const feedbackIconSize: IOIconSizeScale = 24;
58
59
 
59
60
  export const TextInputValidation = forwardRef<
60
- {
61
- validateInput: () => void;
62
- },
61
+ TextInputValidationRefProps,
63
62
  TextInputValidationProps
64
63
  >(
65
64
  (
@@ -44,3 +44,6 @@ export type Nullable<T> = T | null;
44
44
  * Returns a type with the desired type or undefined
45
45
  */
46
46
  export type Optional<T> = T | undefined;
47
+
48
+
49
+ export type TextInputValidationRefProps = { validateInput: () => void };
@@ -1,34 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNativeSvg = require("react-native-svg");
9
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
11
- const IconEmailLegal = ({
12
- size,
13
- style,
14
- ...props
15
- }) => /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Svg, _extends({
16
- width: size,
17
- height: size,
18
- viewBox: "0 0 24 24",
19
- style: style
20
- }, props), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
21
- d: "M5.625 20.25h7.36c1.242-.049 1.243-1.825 0-1.875h-7.36a3.754 3.754 0 0 1-3.75-3.75v-9a3.754 3.754 0 0 1 3.75-3.75h12.75a3.754 3.754 0 0 1 3.75 3.75v1.688c.05 1.242 1.826 1.243 1.875 0V5.625A5.631 5.631 0 0 0 18.375 0H5.625A5.631 5.631 0 0 0 0 5.625v9a5.631 5.631 0 0 0 5.625 5.625Z",
22
- fill: "currentColor"
23
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
24
- fillRule: "evenodd",
25
- clipRule: "evenodd",
26
- d: "m20.531 18.09-.182.275a1.803 1.803 0 0 1-1.505.807c-.607 0-1.17-.302-1.505-.807l-.183-.275-.323.065a1.803 1.803 0 0 1-1.635-.493 1.803 1.803 0 0 1-.494-1.635l.066-.324-.275-.182c-1.07-.689-1.07-2.321 0-3.01l.275-.183-.066-.323a1.803 1.803 0 0 1 .494-1.635 1.803 1.803 0 0 1 1.634-.494l.324.066.183-.275c.688-1.07 2.32-1.07 3.01 0l.182.275.324-.066a1.803 1.803 0 0 1 1.635.494c.429.429.613 1.04.493 1.635l-.065.323.275.183c1.069.688 1.07 2.321 0 3.01l-.275.182.065.324a1.803 1.803 0 0 1-.493 1.635 1.803 1.803 0 0 1-1.635.493l-.324-.065Zm-3.968-1.793.267-.054a1.799 1.799 0 0 1 1.862.771l.152.228.15-.228a1.8 1.8 0 0 1 1.863-.771l.268.054-.054-.268a1.8 1.8 0 0 1 .771-1.862l.228-.151-.228-.152a1.8 1.8 0 0 1-.771-1.862l.054-.268-.268.054a1.8 1.8 0 0 1-1.862-.771l-.151-.227-.151.227a1.8 1.8 0 0 1-1.863.771l-.267-.054.054.268a1.8 1.8 0 0 1-.772 1.862l-.227.152.227.15a1.8 1.8 0 0 1 .772 1.863l-.055.268Z",
27
- fill: "currentColor"
28
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
29
- d: "M22.078 22.397a1.6 1.6 0 0 1-2.695 1.17l-.586-.54-.587.54a1.6 1.6 0 0 1-2.694-1.17v-1.772c.049-1.243 1.825-1.244 1.875 0v1.148l.77-.712a.937.937 0 0 1 1.272 0l.77.712v-1.148c.05-1.243 1.826-1.244 1.875 0v1.772ZM5.58 3.89a.863.863 0 0 0-1.22 1.22l7.02 7.02.01.01a.86.86 0 0 0 1.22 0l.01-.01 7.02-7.02a.862.862 0 1 0-1.22-1.22L12 10.31 5.58 3.89ZM4.265 16.265a.862.862 0 0 1 0-1.22l3.553-3.553a.862.862 0 1 1 1.22 1.22l-3.553 3.553a.863.863 0 0 1-1.22 0Z",
30
- fill: "currentColor"
31
- }));
32
- var _default = IconEmailLegal;
33
- exports.default = _default;
34
- //# sourceMappingURL=IconEmailLegal.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeSvg","obj","__esModule","default","_extends","Object","assign","bind","target","i","arguments","length","source","key","prototype","hasOwnProperty","call","apply","IconEmailLegal","size","style","props","createElement","Svg","width","height","viewBox","Path","d","fill","fillRule","clipRule","_default","exports"],"sourceRoot":"../../../../../src","sources":["components/icons/svg/IconEmailLegal.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,eAAA,GAAAD,OAAA;AAA6C,SAAAD,uBAAAG,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAAA,SAAAG,SAAA,IAAAA,QAAA,GAAAC,MAAA,CAAAC,MAAA,GAAAD,MAAA,CAAAC,MAAA,CAAAC,IAAA,eAAAC,MAAA,aAAAC,CAAA,MAAAA,CAAA,GAAAC,SAAA,CAAAC,MAAA,EAAAF,CAAA,UAAAG,MAAA,GAAAF,SAAA,CAAAD,CAAA,YAAAI,GAAA,IAAAD,MAAA,QAAAP,MAAA,CAAAS,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAJ,MAAA,EAAAC,GAAA,KAAAL,MAAA,CAAAK,GAAA,IAAAD,MAAA,CAAAC,GAAA,gBAAAL,MAAA,YAAAJ,QAAA,CAAAa,KAAA,OAAAP,SAAA;AAG7C,MAAMQ,cAAc,GAAGA,CAAC;EAAEC,IAAI;EAAEC,KAAK;EAAE,GAAGC;AAAoB,CAAC,kBAC7DxB,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAAuB,GAAG,EAAAnB,QAAA;EAACoB,KAAK,EAAEL,IAAK;EAACM,MAAM,EAAEN,IAAK;EAACO,OAAO,EAAC,WAAW;EAACN,KAAK,EAAEA;AAAM,GAAKC,KAAK,gBACzExB,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHC,CAAC,EAAC,2RAA2R;EAC7RC,IAAI,EAAC;AAAc,CACpB,CAAC,eACFhC,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHG,QAAQ,EAAC,SAAS;EAClBC,QAAQ,EAAC,SAAS;EAClBH,CAAC,EAAC,w4BAAw4B;EAC14BC,IAAI,EAAC;AAAc,CACpB,CAAC,eACFhC,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHC,CAAC,EAAC,scAAsc;EACxcC,IAAI,EAAC;AAAc,CACpB,CACE,CACN;AAAC,IAAAG,QAAA,GAEad,cAAc;AAAAe,OAAA,CAAA9B,OAAA,GAAA6B,QAAA"}
@@ -1,16 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
- <path
3
- d="M5.625 20.25h7.36c1.242-.049 1.243-1.825 0-1.875h-7.36a3.754 3.754 0 0 1-3.75-3.75v-9a3.754 3.754 0 0 1 3.75-3.75h12.75a3.754 3.754 0 0 1 3.75 3.75v1.688c.05 1.242 1.826 1.243 1.875 0V5.625A5.631 5.631 0 0 0 18.375 0H5.625A5.631 5.631 0 0 0 0 5.625v9a5.631 5.631 0 0 0 5.625 5.625Z"
4
- fill="#000"
5
- />
6
- <path
7
- fill-rule="evenodd"
8
- clip-rule="evenodd"
9
- d="m20.531 18.09-.182.275a1.803 1.803 0 0 1-1.505.807c-.607 0-1.17-.302-1.505-.807l-.183-.275-.323.065a1.803 1.803 0 0 1-1.635-.493 1.803 1.803 0 0 1-.494-1.635l.066-.324-.275-.182c-1.07-.689-1.07-2.321 0-3.01l.275-.183-.066-.323a1.803 1.803 0 0 1 .494-1.635 1.803 1.803 0 0 1 1.634-.494l.324.066.183-.275c.688-1.07 2.32-1.07 3.01 0l.182.275.324-.066a1.803 1.803 0 0 1 1.635.494c.429.429.613 1.04.493 1.635l-.065.323.275.183c1.069.688 1.07 2.321 0 3.01l-.275.182.065.324a1.803 1.803 0 0 1-.493 1.635 1.803 1.803 0 0 1-1.635.493l-.324-.065Zm-3.968-1.793.267-.054a1.799 1.799 0 0 1 1.862.771l.152.228.15-.228a1.8 1.8 0 0 1 1.863-.771l.268.054-.054-.268a1.8 1.8 0 0 1 .771-1.862l.228-.151-.228-.152a1.8 1.8 0 0 1-.771-1.862l.054-.268-.268.054a1.8 1.8 0 0 1-1.862-.771l-.151-.227-.151.227a1.8 1.8 0 0 1-1.863.771l-.267-.054.054.268a1.8 1.8 0 0 1-.772 1.862l-.227.152.227.15a1.8 1.8 0 0 1 .772 1.863l-.055.268Z"
10
- fill="#000"
11
- />
12
- <path
13
- d="M22.078 22.397a1.6 1.6 0 0 1-2.695 1.17l-.586-.54-.587.54a1.6 1.6 0 0 1-2.694-1.17v-1.772c.049-1.243 1.825-1.244 1.875 0v1.148l.77-.712a.937.937 0 0 1 1.272 0l.77.712v-1.148c.05-1.243 1.826-1.244 1.875 0v1.772ZM5.58 3.89a.863.863 0 0 0-1.22 1.22l7.02 7.02.01.01a.86.86 0 0 0 1.22 0l.01-.01 7.02-7.02a.862.862 0 1 0-1.22-1.22L12 10.31 5.58 3.89ZM4.265 16.265a.862.862 0 0 1 0-1.22l3.553-3.553a.862.862 0 1 1 1.22 1.22l-3.553 3.553a.863.863 0 0 1-1.22 0Z"
14
- fill="#000"
15
- />
16
- </svg>
@@ -1,40 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
9
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
10
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
11
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
13
- /**
14
- * @deprecated Use `charity` key instead
15
- */
16
- const PictogramDonation = ({
17
- size,
18
- colorValues,
19
- ...props
20
- }) => /*#__PURE__*/_react.default.createElement(_reactNativeSvg.default, _extends({
21
- width: size,
22
- height: size,
23
- viewBox: "0 0 240 240"
24
- }, props), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
25
- fillRule: "evenodd",
26
- clipRule: "evenodd",
27
- d: "M147.212 192.138c.852.489 1.722.687 2.557.688 1.688-.002 3.239-.8 4.178-1.531 7.01-3.154 96.182-35.614 99.267-36.674h.001l.189-.065-1.328-3.835-.574.197c-5.355 1.842-93.089 33.823-99.504 36.809-.155.077-.319.189-.457.301 0 0-.006.004-.015.011h-.001c-.157.12-1.433 1.085-2.287.591-1.146-.68-6.407-6.424 2.924-52.883 4.407-21.91 2.285-38.661-6.295-49.7966-10.504-13.6464-27.726-14.7298-33.383-15.0824l-.888-.0516c-3.536.0774-11.8661.7223-12.832 5.1851-.6467 2.9494 1.932 5.8989 8.503 9.5534-12.1766.4299-28.967 2.4593-35.0553 9.9833-.0776.1032-.1466.2063-.2069.3181-.6037 1.1179-1.1901 3.5084.3794 5.3917.4798.573 1.161 1.147 2.2752 1.557-2.1345 1.696-3.9916 3.899-3.8706 6.38.207 4.187 5.5364 5.984 7.287 6.569.1294.043.2587.078.3967.095.1811.026 1.7075.206 4.0963.206l-.0087.009c1.4315 0 3.1716-.066 5.1144-.271-.581 2.115-.8166 4.783.629 6.892 1.3194 1.935 3.6737 2.898 6.9248 2.898l.0087-.009c.8537 0 1.7678-.06 2.7509-.198 1.8857-.095 5.7711-.365 9.6731-1.091-3.196 15.023-15.1229 77.882 4.582 96.651 1.561 2.063 15.359 19.055 45.05 19.055v.008c15.574 0 65.53-14.678 90.374-28.642l-2-3.534C138 262 121 220.936 115.442 218.433c-.086-.12-.181-.232-.284-.326-19.07-17.837-5.227-85.166-3.106-94.877 2.869-.886 5.268-2.124 6.21-3.856l-3.579-1.934c-1 1.84-9.71 3.525-17.0745 3.903-3.0701.422-5.2432.069-5.9417-.945-.8383-1.215-.129-3.711.5702-5.31 3.7122-.764 7.786-2.086 11.701-4.33l-2.026-3.517c-9.8141 5.624-21.1456 4.764-22.7496 4.609-3.1218-1.083-4.2773-2.21-4.3118-2.855-.0756-1.499 3.5311-4.206 6.9223-5.792 3.4963-.397 8.28-1.458 14.887-3.5632l-1.2418-3.8609c-17.3595 5.5291-19.8 2.9924-19.9035 2.8807-.138-.1634-.0518-.5504.0259-.7653 6.5712-7.6702 29.8555-8.3581 36.8925-8.3839 1.285-.0086 2.38-.8857 2.664-2.1326.285-1.2726-.336-2.5624-1.517-3.13-10.487-5.0561-10.849-7.3434-10.849-7.3434.483-.9373 4.915-1.9433 8.779-2.0379l.724.0516.008.0004c5.757.3615 21.029 1.3204 30.408 13.4998 7.83 10.1639 9.693 25.8227 5.528 46.5287-10.391 51.726-3.295 55.841-.966 57.191Z",
28
- fill: colorValues.hands
29
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
30
- d: "M89.9306 0C76.0999 0 64.8867 11.1786 64.8867 24.9668 64.8867 11.1786 53.6769 0 39.8462 0c-.2464 0-.4929.00332-.7393.00996C21.2631.52456 11.9649 21.5073 23.268 35.2822l32.1174 39.1467c4.9122 5.986 14.0938 5.986 19.006 0l32.1176-39.1467C117.809 21.5073 108.51.52457 90.6666.00996A27.44628 27.44628 0 0 0 89.9273 0h.0033Z",
31
- fill: colorValues.main
32
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
33
- fillRule: "evenodd",
34
- clipRule: "evenodd",
35
- d: "M87.1816 7.87002c0-.72428.5872-1.31143 1.3115-1.31143 5.9448 0 10.2533 2.29037 13.0539 5.63291 2.77 3.3058 3.994 7.5532 3.994 11.4157 0 .7242-.587 1.3114-1.311 1.3114s-1.311-.5872-1.311-1.3114c0-3.3505-1.07-6.9716-3.3825-9.7312-2.2813-2.7228-5.8413-4.69455-11.0434-4.69455-.7243 0-1.3115-.58715-1.3115-1.31143Z",
36
- fill: colorValues.secondary
37
- }));
38
- var _default = PictogramDonation;
39
- exports.default = _default;
40
- //# sourceMappingURL=PictogramDonation.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeSvg","_interopRequireWildcard","_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","default","cache","has","get","newObj","hasPropertyDescriptor","Object","defineProperty","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","_extends","assign","bind","target","i","arguments","length","source","apply","PictogramDonation","size","colorValues","props","createElement","width","height","viewBox","Path","fillRule","clipRule","d","fill","hands","main","secondary","_default","exports"],"sourceRoot":"../../../../../src","sources":["components/pictograms/svg/PictogramDonation.tsx"],"mappings":"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"}
@@ -1,55 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNativeSvg = require("react-native-svg");
9
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
11
- const PictogramGenericError = ({
12
- size,
13
- colorValues,
14
- ...props
15
- }) => /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Svg, _extends({
16
- width: size,
17
- height: size,
18
- viewBox: "0 0 240 240"
19
- }, props), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
20
- d: "M110.731 21C117.361 24.98 124.251 27.31 132.231 25.59C132.921 27 133.571 28.29 134.191 29.61C137.521 36.67 141.891 42.88 148.351 47.48C153.271 50.98 158.831 52.65 165.041 53.53C165.861 56.54 166.521 59.62 167.551 62.58C172.421 76.66 181.501 86.7 195.851 91.56C196.551 91.8 197.201 92.16 198.151 92.58C197.581 108.2 203.731 120.35 217.501 128.3C215.351 135.53 215.071 142.47 218.881 149.27C215.121 151.14 211.281 150.37 207.671 150.31C187.861 149.93 169.121 145.28 152.151 134.82C131.521 122.1 116.021 104.77 107.211 82.04C99.5907 62.38 100.601 42.77 109.211 23.55C109.561 22.76 110.091 22.05 110.721 21L110.731 21Z",
21
- fill: colorValues.main
22
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
23
- d: "M209.211 133.14C208.901 133.14 208.601 133.05 208.331 132.85C196.981 124.63 190.461 112.79 189.441 98.57C174.911 92.58 164.741 81.45 159.211 65.46C158.681 63.94 158.261 62.46 157.911 61.15C152.261 59.79 147.451 57.66 143.241 54.66C136.571 49.91 131.251 43.47 127.001 34.98H126.951C122.451 34.98 118.061 34.09 113.551 32.27C112.781 31.96 112.411 31.09 112.721 30.32C113.031 29.55 113.901 29.18 114.671 29.49C119.131 31.29 123.431 32.1 127.881 31.97L128.851 31.94L129.271 32.82C133.361 41.27 138.501 47.62 144.981 52.22C149.081 55.14 153.821 57.17 159.461 58.43L160.351 58.63L160.581 59.52C160.961 60.98 161.431 62.71 162.051 64.48C167.401 79.93 177.281 90.58 191.431 96.14L192.331 96.49L192.381 97.45C193.131 111.36 199.091 122.46 210.091 130.42C210.761 130.91 210.911 131.84 210.421 132.51C210.131 132.91 209.671 133.13 209.201 133.13L209.211 133.14Z",
24
- fill: colorValues.secondary
25
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
26
- d: "M47.7994 214.18C43.5594 209.06 44.1894 201.46 48.8894 196.76L62.6994 182.95L65.8094 186.06L51.9394 199.93C48.7894 203.08 48.3994 208.21 51.3394 211.57C54.2794 214.93 58.8494 215.3 62.2494 213.07C63.1094 212.51 64.2394 212.65 64.9694 213.38C65.9394 214.35 65.8194 215.99 64.6694 216.74C59.3894 220.21 52.0794 219.36 47.7894 214.18H47.7994Z",
27
- fill: colorValues.main
28
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
29
- d: "M128.468 112.715L102.256 138.928L105.36 142.032L131.573 115.819L128.468 112.715Z",
30
- fill: colorValues.main
31
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
32
- d: "M70.8006 114.21C70.3806 114.21 69.9706 114.04 69.6706 113.7C69.1206 113.08 69.1806 112.13 69.8106 111.58L97.6606 87.12C98.2806 86.57 99.2306 86.64 99.7806 87.26C100.331 87.88 100.271 88.83 99.6406 89.38L71.7906 113.84C71.5006 114.09 71.1506 114.21 70.8006 114.21Z",
33
- fill: colorValues.secondary
34
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
35
- d: "M113.41 177.63C112.99 177.63 112.58 177.46 112.28 177.12C111.73 176.5 111.79 175.55 112.42 175L140.27 150.54C140.89 149.99 141.84 150.06 142.39 150.68C142.94 151.3 142.88 152.25 142.25 152.8L114.4 177.26C114.11 177.51 113.76 177.63 113.41 177.63Z",
36
- fill: colorValues.secondary
37
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
38
- d: "M25.17 190.01L22 187.58C22.11 187.44 32.88 173.43 47 158.35C66.09 137.97 81.92 125.44 94.05 121.1C96.87 120.09 99.97 120.3 102.55 121.66C106.28 123.64 108.43 126.73 108.77 130.59C109.06 133.87 107.85 137.23 105.46 139.81L95.99 150.01L93.06 147.29L102.53 137.09C104.15 135.34 104.97 133.1 104.79 130.94C104.57 128.46 103.19 126.52 100.68 125.19C99.09 124.35 97.16 124.23 95.4 124.86C67.76 134.76 25.6 189.46 25.17 190.01Z",
39
- fill: colorValues.hands
40
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
41
- d: "M94.0707 165.52C90.2707 165.52 85.6107 164.39 81.4107 160.16C78.8807 157.62 77.9807 153.93 79.0707 150.54C80.3507 146.55 82.6907 145.12 84.4307 144.62C88.1207 143.56 92.7607 145.44 98.6207 150.39L96.0407 153.45C89.9007 148.26 86.8207 148.1 85.5407 148.47C84.3707 148.81 83.4707 149.92 82.8807 151.77C82.2507 153.73 82.7807 155.87 84.2507 157.35C90.7407 163.88 98.7207 160.92 99.8907 160.44C103.421 158.07 105.341 155.35 105.601 152.37C106.091 146.85 100.931 141.84 100.881 141.79L103.641 138.89C103.911 139.15 110.241 145.25 109.591 152.7C109.211 157 106.651 160.76 101.951 163.87L101.681 164.02C101.441 164.13 98.2907 165.53 94.0807 165.53L94.0707 165.52Z",
42
- fill: colorValues.hands
43
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
44
- d: "M82.7599 181.6C76.5299 181.6 72.2299 178.59 71.0699 173.27C69.5099 166.14 74.1399 157.44 80.5899 155.37L81.8099 159.18C77.3099 160.62 73.8599 167.3 74.9799 172.42C76.0699 177.44 80.9399 177.94 84.8499 177.47C100.73 175.57 101.57 160.61 101.6 159.97L105.6 160.13C105.6 160.32 104.65 179.13 85.3299 181.44C84.4399 181.55 83.5899 181.6 82.7699 181.6H82.7599Z",
45
- fill: colorValues.hands
46
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
47
- d: "M74.01 192.88C71.33 192.88 69.2901 192.15 67.9301 191.42C63.3201 188.97 60.39 183.46 60.62 177.71C60.97 169.19 68.77 166.05 72.85 165.58L73.3101 169.55L73.0801 167.56L73.3201 169.55C72.9801 169.59 64.91 170.66 64.62 177.87C64.45 182.11 66.5301 186.14 69.8101 187.88C73.7301 189.97 79.1301 188.75 85.0201 184.46C85.6301 183.91 90.47 179.47 91.99 175.85L95.68 177.39C93.71 182.1 87.85 187.3 87.6 187.52L87.4601 187.63C81.9701 191.65 77.4601 192.87 74.0001 192.87L74.01 192.88Z",
48
- fill: colorValues.hands
49
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
50
- d: "M78.0727 188.436L64.8594 202.586L67.7829 205.316L80.9963 191.166L78.0727 188.436Z",
51
- fill: colorValues.hands
52
- }));
53
- var _default = PictogramGenericError;
54
- exports.default = _default;
55
- //# sourceMappingURL=PictogramGenericError.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeSvg","obj","__esModule","default","_extends","Object","assign","bind","target","i","arguments","length","source","key","prototype","hasOwnProperty","call","apply","PictogramGenericError","size","colorValues","props","createElement","Svg","width","height","viewBox","Path","d","fill","main","secondary","hands","_default","exports"],"sourceRoot":"../../../../../src","sources":["components/pictograms/svg/PictogramGenericError.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,eAAA,GAAAD,OAAA;AAA6C,SAAAD,uBAAAG,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAC,UAAA,GAAAD,GAAA,KAAAE,OAAA,EAAAF,GAAA;AAAA,SAAAG,SAAA,IAAAA,QAAA,GAAAC,MAAA,CAAAC,MAAA,GAAAD,MAAA,CAAAC,MAAA,CAAAC,IAAA,eAAAC,MAAA,aAAAC,CAAA,MAAAA,CAAA,GAAAC,SAAA,CAAAC,MAAA,EAAAF,CAAA,UAAAG,MAAA,GAAAF,SAAA,CAAAD,CAAA,YAAAI,GAAA,IAAAD,MAAA,QAAAP,MAAA,CAAAS,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAJ,MAAA,EAAAC,GAAA,KAAAL,MAAA,CAAAK,GAAA,IAAAD,MAAA,CAAAC,GAAA,gBAAAL,MAAA,YAAAJ,QAAA,CAAAa,KAAA,OAAAP,SAAA;AAG7C,MAAMQ,qBAAqB,GAAGA,CAAC;EAC7BC,IAAI;EACJC,WAAW;EACX,GAAGC;AACc,CAAC,kBAClBxB,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAAuB,GAAG,EAAAnB,QAAA;EAACoB,KAAK,EAAEL,IAAK;EAACM,MAAM,EAAEN,IAAK;EAACO,OAAO,EAAC;AAAa,GAAKL,KAAK,gBAC7DxB,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHC,CAAC,EAAC,wmBAAwmB;EAC1mBC,IAAI,EAAET,WAAW,CAACU;AAAK,CACxB,CAAC,eACFjC,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHC,CAAC,EAAC,o1BAAo1B;EACt1BC,IAAI,EAAET,WAAW,CAACW;AAAU,CAC7B,CAAC,eACFlC,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHC,CAAC,EAAC,oVAAoV;EACtVC,IAAI,EAAET,WAAW,CAACU;AAAK,CACxB,CAAC,eACFjC,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHC,CAAC,EAAC,kFAAkF;EACpFC,IAAI,EAAET,WAAW,CAACU;AAAK,CACxB,CAAC,eACFjC,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHC,CAAC,EAAC,yQAAyQ;EAC3QC,IAAI,EAAET,WAAW,CAACW;AAAU,CAC7B,CAAC,eACFlC,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHC,CAAC,EAAC,wPAAwP;EAC1PC,IAAI,EAAET,WAAW,CAACW;AAAU,CAC7B,CAAC,eACFlC,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHC,CAAC,EAAC,saAAsa;EACxaC,IAAI,EAAET,WAAW,CAACY;AAAM,CACzB,CAAC,eACFnC,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHC,CAAC,EAAC,kpBAAkpB;EACppBC,IAAI,EAAET,WAAW,CAACY;AAAM,CACzB,CAAC,eACFnC,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHC,CAAC,EAAC,qWAAqW;EACvWC,IAAI,EAAET,WAAW,CAACY;AAAM,CACzB,CAAC,eACFnC,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHC,CAAC,EAAC,4dAA4d;EAC9dC,IAAI,EAAET,WAAW,CAACY;AAAM,CACzB,CAAC,eACFnC,MAAA,CAAAM,OAAA,CAAAmB,aAAA,CAACtB,eAAA,CAAA2B,IAAI;EACHC,CAAC,EAAC,mFAAmF;EACrFC,IAAI,EAAET,WAAW,CAACY;AAAM,CACzB,CACE,CACN;AAAC,IAAAC,QAAA,GAEaf,qBAAqB;AAAAgB,OAAA,CAAA/B,OAAA,GAAA8B,QAAA"}
@@ -1,42 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
9
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
10
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
11
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
13
- /**
14
- * @deprecated Use `empty` key instead
15
- */
16
- const PictogramSetup = ({
17
- size,
18
- colorValues,
19
- ...props
20
- }) => /*#__PURE__*/_react.default.createElement(_reactNativeSvg.default, _extends({
21
- width: size,
22
- height: size,
23
- viewBox: "0 0 240 240"
24
- }, props), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
25
- d: "M30 171.742c2.27-3.265 55.8489-80.1223 77.784-88.8489 14.039-5.5722 20.726 1.0433 22.946 4.1485 2.961 4.1362 3.911 9.6593 2.899 14.5074 8.723-2.9579 24.316-7.941 35.086-9.5734 3.023-.4541 6.033.2946 8.488 2.1233 2.492 1.8656 4.071 4.5658 4.478 7.6221.778 5.867-3.01 11.267-8.796 12.568-18.468 4.148-31.249 8.113-35.073 10.887l-3.43-4.677c5.774-4.185 23.428-8.751 37.22-11.844 2.838-.638 4.688-3.289 4.318-6.161-.197-1.51-.962-2.8229-2.208-3.7557-1.197-.8836-2.653-1.2519-4.121-1.0309-14.767 2.2338-40.193 11.4636-40.452 11.5616-1.246.454-2.64 0-3.393-1.08-.752-1.08-.678-2.541.198-3.535 2.652-3.044 3.232-9.7818.049-14.2494-3.047-4.259-8.759-5.0445-16.05-2.1356-16.8647 6.7014-59.9697 64.903-75.1563 86.762L30 171.742Z",
26
- fill: colorValues.hands
27
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
28
- d: "m146.853 144.963-3.886-4.308c4.133-3.707 16.038-6.751 35.37-9.046 5.132-.614 8.82-5.278 8.241-10.408-.445-3.928-3.344-7.18-7.193-8.101l-3.084-.736 1.357-5.634 3.084.737c6.218 1.497 10.894 6.738 11.609 13.071.95 8.273-5.033 15.821-13.336 16.803-25.34 3.019-31.039 6.578-32.174 7.597l.012.025Z",
29
- fill: colorValues.hands
30
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
31
- d: "M88.6777 233.734c3.8738-5.646 28.0043-36.587 30.6943-40.073 18.456-23.946 50.68-36.796 63.683-41.215 2.122-.724 3.75-2.455 4.33-4.627.604-2.258-.025-4.701-1.653-6.395l-5.182-5.388 4.207-4.001 5.182 5.388c3.01 3.13 4.194 7.684 3.071 11.881-1.085 4.05-4.108 7.266-8.068 8.616-12.509 4.247-43.463 16.57-60.944 39.263-2.591 3.363-26.6845 34.231-30.5089 39.816l-4.8114-3.265ZM115.589 114.561l-10.538 10.587 4.129 4.068 10.538-10.587-4.129-4.068Z",
32
- fill: colorValues.hands
33
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
34
- d: "M102.272 153.694c6.267-13.402-.876-35.826-.95-36.047l5.54-1.78c.333 1.007 7.92 24.793.678 40.27l-5.268-2.443ZM133.187 114.115l-5.052 2.881 21.245 36.876 5.052-2.881-21.245-36.876Z",
35
- fill: colorValues.hands
36
- }), /*#__PURE__*/_react.default.createElement(_reactNativeSvg.Path, {
37
- d: "M130.253 51.9665c-.038 3.2144-3.17 5.0086-5.853 3.4807-.626-.3551-1.151-.9067-1.67-1.4202-7.782-7.7982-15.552-15.6028-23.3214-23.4074-.4429-.4438-.9111-.8813-1.2717-1.3885-1.1895-1.6991-.9617-3.7596.5125-5.1354 1.4046-1.3124 3.2776-1.4646 4.9036-.3551.43.2917.803.6721 1.17 1.0461 7.934 7.9441 15.856 15.8882 23.796 23.8259.994.9891 1.86 2.0098 1.734 3.3602v-.0063ZM165.206 55.9937c-1.562.0508-2.738-.4573-3.467-1.7655-.765-1.3718-.784-2.8326.031-4.179.423-.6986 1.047-1.2765 1.623-1.8735 7.313-7.5894 14.626-15.1788 21.945-22.7554.576-.5907 1.134-1.2258 1.795-1.7021 1.55-1.1114 3.393-.9082 4.728.4382 1.329 1.3337 1.593 3.2708.57 4.8839-.441.6923-1.041 1.2829-1.611 1.8799-7.38 7.6656-14.773 15.3248-22.16 22.9841-1.004 1.0415-1.953 2.191-3.448 2.0894h-.006ZM149.199 25.9935v16.3307c0 .8514.029 1.7221-.082 2.5541-.252 1.9285-1.4 3.1153-2.897 3.1217-1.507 0-2.656-1.1739-2.917-3.0959-.102-.7288-.078-1.4899-.078-2.2316V9.36617c0-.74817-.024-1.50924.073-2.23806C143.545 5.2448 144.732 4 146.195 4c1.464 0 2.67 1.22545 2.917 3.10232.112.83201.078 1.70272.082 2.55409.005 5.44359 0 10.88709 0 16.33069l.005.0064ZM188.584 65.0154c5.73 0 11.468-.0452 17.198.0193 2.866.0322 4.412 1.7347 4.198 4.3528-.145 1.7798-1.376 3.2114-3.117 3.4823-.817.1289-1.665.0838-2.494.0838H172.78c-.415 0-.842-.0516-1.251.0064-2.356.3547-4.43-1.7088-4.386-3.9078.044-2.4763 1.483-3.9143 4.242-4.0368.622-.0258 1.25-.0065 1.879-.0065h15.326l-.006.0065Z",
38
- fill: colorValues.main
39
- }));
40
- var _default = PictogramSetup;
41
- exports.default = _default;
42
- //# sourceMappingURL=PictogramSetup.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireDefault","require","_reactNativeSvg","_interopRequireWildcard","_getRequireWildcardCache","nodeInterop","WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","default","cache","has","get","newObj","hasPropertyDescriptor","Object","defineProperty","getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set","_extends","assign","bind","target","i","arguments","length","source","apply","PictogramSetup","size","colorValues","props","createElement","width","height","viewBox","Path","d","fill","hands","main","_default","exports"],"sourceRoot":"../../../../../src","sources":["components/pictograms/svg/PictogramSetup.tsx"],"mappings":"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"}
@@ -1,18 +0,0 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 240">
2
- <path
3
- fill-rule="evenodd"
4
- clip-rule="evenodd"
5
- d="M147.212 192.138c.852.489 1.722.687 2.557.688 1.688-.002 3.239-.8 4.178-1.531 7.01-3.154 96.182-35.614 99.267-36.674h.001l.189-.065-1.328-3.835-.574.197c-5.355 1.842-93.089 33.823-99.504 36.809-.155.077-.319.189-.457.301 0 0-.006.004-.015.011h-.001c-.157.12-1.433 1.085-2.287.591-1.146-.68-6.407-6.424 2.924-52.883 4.407-21.91 2.285-38.661-6.295-49.7966-10.504-13.6464-27.726-14.7298-33.383-15.0824l-.888-.0516c-3.536.0774-11.8661.7223-12.832 5.1851-.6467 2.9494 1.932 5.8989 8.503 9.5534-12.1766.4299-28.967 2.4593-35.0553 9.9833-.0776.1032-.1466.2063-.2069.3181-.6037 1.1179-1.1901 3.5084.3794 5.3917.4798.573 1.161 1.147 2.2752 1.557-2.1345 1.696-3.9916 3.899-3.8706 6.38.207 4.187 5.5364 5.984 7.287 6.569.1294.043.2587.078.3967.095.1811.026 1.7075.206 4.0963.206l-.0087.009c1.4315 0 3.1716-.066 5.1144-.271-.581 2.115-.8166 4.783.629 6.892 1.3194 1.935 3.6737 2.898 6.9248 2.898l.0087-.009c.8537 0 1.7678-.06 2.7509-.198 1.8857-.095 5.7711-.365 9.6731-1.091-3.196 15.023-15.1229 77.882 4.582 96.651 1.561 2.063 15.359 19.055 45.05 19.055v.008c15.574 0 65.53-14.678 90.374-28.642l-2-3.534C138 262 121 220.936 115.442 218.433c-.086-.12-.181-.232-.284-.326-19.07-17.837-5.227-85.166-3.106-94.877 2.869-.886 5.268-2.124 6.21-3.856l-3.579-1.934c-1 1.84-9.71 3.525-17.0745 3.903-3.0701.422-5.2432.069-5.9417-.945-.8383-1.215-.129-3.711.5702-5.31 3.7122-.764 7.786-2.086 11.701-4.33l-2.026-3.517c-9.8141 5.624-21.1456 4.764-22.7496 4.609-3.1218-1.083-4.2773-2.21-4.3118-2.855-.0756-1.499 3.5311-4.206 6.9223-5.792 3.4963-.397 8.28-1.458 14.887-3.5632l-1.2418-3.8609c-17.3595 5.5291-19.8 2.9924-19.9035 2.8807-.138-.1634-.0518-.5504.0259-.7653 6.5712-7.6702 29.8555-8.3581 36.8925-8.3839 1.285-.0086 2.38-.8857 2.664-2.1326.285-1.2726-.336-2.5624-1.517-3.13-10.487-5.0561-10.849-7.3434-10.849-7.3434.483-.9373 4.915-1.9433 8.779-2.0379l.724.0516.008.0004c5.757.3615 21.029 1.3204 30.408 13.4998 7.83 10.1639 9.693 25.8227 5.528 46.5287-10.391 51.726-3.295 55.841-.966 57.191Z"
6
- fill="#0B3EE3"
7
- />
8
- <path
9
- d="M89.9306 0C76.0999 0 64.8867 11.1786 64.8867 24.9668 64.8867 11.1786 53.6769 0 39.8462 0c-.2464 0-.4929.00332-.7393.00996C21.2631.52456 11.9649 21.5073 23.268 35.2822l32.1174 39.1467c4.9122 5.986 14.0938 5.986 19.006 0l32.1176-39.1467C117.809 21.5073 108.51.52457 90.6666.00996A27.44628 27.44628 0 0 0 89.9273 0h.0033Z"
10
- fill="#AAEEEF"
11
- />
12
- <path
13
- fill-rule="evenodd"
14
- clip-rule="evenodd"
15
- d="M87.1816 7.87002c0-.72428.5872-1.31143 1.3115-1.31143 5.9448 0 10.2533 2.29037 13.0539 5.63291 2.77 3.3058 3.994 7.5532 3.994 11.4157 0 .7242-.587 1.3114-1.311 1.3114s-1.311-.5872-1.311-1.3114c0-3.3505-1.07-6.9716-3.3825-9.7312-2.2813-2.7228-5.8413-4.69455-11.0434-4.69455-.7243 0-1.3115-.58715-1.3115-1.31143Z"
16
- fill="#00C5CA"
17
- />
18
- </svg>