@ultraviolet/ui 1.30.0 → 1.31.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.
- package/README.md +4 -0
- package/dist/index.d.ts +70 -3
- package/dist/src/components/Banner/assets/default-image-small.svg.js +2 -286
- package/dist/src/components/Banner/assets/default-image.svg.js +2 -466
- package/dist/src/components/Banner/index.js +5 -2
- package/dist/src/components/Modal/Disclosure.js +2 -2
- package/dist/src/components/NumberInput/index.js +1 -1
- package/dist/src/components/NumberInputV2/index.js +299 -0
- package/dist/src/components/Stack/index.js +1 -1
- package/dist/src/components/TextArea/index.js +50 -81
- package/dist/src/components/TextInput/index.js +1 -1
- package/dist/src/components/TextInputV2/index.js +282 -0
- package/dist/src/helpers/isJSON.js +1 -2
- package/dist/src/helpers/recursivelyGetChildrenString.js +1 -2
- package/dist/src/index.js +2 -0
- package/dist/src/utils/capitalize.js +1 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -21,6 +21,10 @@ You will also need to import fonts in your project by adding:
|
|
|
21
21
|
href="https://fonts.cdnfonts.com/css/jetbrains-mono-2?styles=156604"
|
|
22
22
|
rel="stylesheet"
|
|
23
23
|
/>
|
|
24
|
+
<link
|
|
25
|
+
href="https://fonts.cdnfonts.com/css/space-grotesk?styles=24816,24815"
|
|
26
|
+
rel="stylesheet"
|
|
27
|
+
/>
|
|
24
28
|
```
|
|
25
29
|
|
|
26
30
|
### Usage
|
package/dist/index.d.ts
CHANGED
|
@@ -2022,6 +2022,30 @@ type NumberInputProps = {
|
|
|
2022
2022
|
*/
|
|
2023
2023
|
declare const NumberInput: ({ disabled, maxValue, minValue, name, onChange, onFocus, onBlur, onMaxCrossed, onMinCrossed, size, step, text, defaultValue, value, disabledTooltip, className, label, id, placeholder, error, "aria-label": ariaLabel, "aria-describedby": ariaDescribedBy, "data-testid": dataTestId, }: NumberInputProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2024
2024
|
|
|
2025
|
+
/**
|
|
2026
|
+
* NumberInputV2 component is used to increment / decrement a number value by clicking on + / - buttons or
|
|
2027
|
+
* by typing into input. If the value is out of the min / max range, the input will automatically be the min / max value on blur.
|
|
2028
|
+
*/
|
|
2029
|
+
declare const NumberInputV2: react.ForwardRefExoticComponent<{
|
|
2030
|
+
size?: "large" | "small" | "medium" | undefined;
|
|
2031
|
+
/**
|
|
2032
|
+
* Text displayed into component at the right of number value.
|
|
2033
|
+
*/
|
|
2034
|
+
unit?: string | undefined;
|
|
2035
|
+
tooltip?: string | undefined;
|
|
2036
|
+
className?: string | undefined;
|
|
2037
|
+
'data-testid'?: string | undefined;
|
|
2038
|
+
label?: string | undefined;
|
|
2039
|
+
/**
|
|
2040
|
+
* Label description displayed right next to the label. It allows you to customize the label content.
|
|
2041
|
+
*/
|
|
2042
|
+
labelDescription?: ReactNode;
|
|
2043
|
+
error?: string | undefined;
|
|
2044
|
+
success?: string | undefined;
|
|
2045
|
+
helper?: ReactNode;
|
|
2046
|
+
value?: string | number | undefined;
|
|
2047
|
+
} & Pick<InputHTMLAttributes<HTMLInputElement>, "autoFocus" | "id" | "aria-label" | "onFocus" | "onBlur" | "onChange" | "max" | "min" | "name" | "disabled" | "step" | "placeholder" | "readOnly" | "required"> & react.RefAttributes<HTMLInputElement>>;
|
|
2048
|
+
|
|
2025
2049
|
type PaginationProps = {
|
|
2026
2050
|
/**
|
|
2027
2051
|
Event function called when changing the page
|
|
@@ -2916,7 +2940,7 @@ type StyledInputProps = {
|
|
|
2916
2940
|
rightComponentLength: number;
|
|
2917
2941
|
} & (InputHTMLAttributes<HTMLInputElement> | TextareaHTMLAttributes<HTMLTextAreaElement>);
|
|
2918
2942
|
type InputProps = Omit<Exclude<StyledInputProps, TextareaHTMLAttributes<HTMLTextAreaElement>>, 'inputSize'>;
|
|
2919
|
-
type TextInputProps = {
|
|
2943
|
+
type TextInputProps$1 = {
|
|
2920
2944
|
'data-testid'?: string;
|
|
2921
2945
|
ariaControls?: string;
|
|
2922
2946
|
autoComplete?: string;
|
|
@@ -2962,7 +2986,50 @@ type TextInputProps = {
|
|
|
2962
2986
|
* TextInput component allows users to input text, with options for customization and validation.
|
|
2963
2987
|
* It supports various input types and should be appropriately sized with clear labeling.
|
|
2964
2988
|
*/
|
|
2965
|
-
declare const TextInput: react.ForwardRefExoticComponent<TextInputProps & react.RefAttributes<HTMLInputElement | HTMLTextAreaElement | null>>;
|
|
2989
|
+
declare const TextInput$1: react.ForwardRefExoticComponent<TextInputProps$1 & react.RefAttributes<HTMLInputElement | HTMLTextAreaElement | null>>;
|
|
2990
|
+
|
|
2991
|
+
declare const TEXTINPUT_SIZE_HEIGHT: {
|
|
2992
|
+
readonly large: 48;
|
|
2993
|
+
readonly medium: 40;
|
|
2994
|
+
readonly small: 32;
|
|
2995
|
+
};
|
|
2996
|
+
type TextInputSize = keyof typeof TEXTINPUT_SIZE_HEIGHT;
|
|
2997
|
+
type TextInputProps = {
|
|
2998
|
+
autoFocus?: boolean;
|
|
2999
|
+
className?: string;
|
|
3000
|
+
clearable?: boolean;
|
|
3001
|
+
'data-testid'?: string;
|
|
3002
|
+
disabled?: boolean;
|
|
3003
|
+
error?: string;
|
|
3004
|
+
helper?: ReactNode;
|
|
3005
|
+
iconName?: ComponentProps<typeof Icon>['name'];
|
|
3006
|
+
id?: string;
|
|
3007
|
+
label: string;
|
|
3008
|
+
labelDescription?: ReactNode;
|
|
3009
|
+
loading?: boolean;
|
|
3010
|
+
minLength?: number;
|
|
3011
|
+
maxLength?: number;
|
|
3012
|
+
name?: string;
|
|
3013
|
+
onBlur?: DOMAttributes<HTMLInputElement>['onBlur'];
|
|
3014
|
+
onChange: (newValue: string) => void;
|
|
3015
|
+
onFocus?: DOMAttributes<HTMLInputElement>['onFocus'];
|
|
3016
|
+
onRandomize?: () => void;
|
|
3017
|
+
placeholder?: string;
|
|
3018
|
+
prefix?: string;
|
|
3019
|
+
readOnly?: boolean;
|
|
3020
|
+
required?: boolean;
|
|
3021
|
+
size?: TextInputSize;
|
|
3022
|
+
success?: string;
|
|
3023
|
+
suffix?: string;
|
|
3024
|
+
tabIndex?: number;
|
|
3025
|
+
tooltip?: string;
|
|
3026
|
+
type?: 'text' | 'password' | 'url' | 'email';
|
|
3027
|
+
value?: string;
|
|
3028
|
+
};
|
|
3029
|
+
/**
|
|
3030
|
+
* This component offers an extended input HTML
|
|
3031
|
+
*/
|
|
3032
|
+
declare const TextInput: react.ForwardRefExoticComponent<TextInputProps & react.RefAttributes<HTMLInputElement>>;
|
|
2966
3033
|
|
|
2967
3034
|
declare const schedules: {
|
|
2968
3035
|
half: readonly ["00:00", "00:30", "01:00", "01:30", "02:00", "02:30", "03:00", "03:30", "04:00", "04:30", "05:00", "05:30", "06:00", "06:30", "07:00", "07:30", "08:00", "08:30", "09:00", "09:30", "10:00", "10:30", "11:00", "11:30", "12:00", "12:30", "13:00", "13:30", "14:00", "14:30", "15:00", "15:30", "16:00", "16:30", "17:00", "17:30", "18:00", "18:30", "19:00", "19:30", "20:00", "20:30", "21:00", "21:30", "22:00", "22:30", "23:00", "23:30"];
|
|
@@ -3242,4 +3309,4 @@ declare const down: (size: ScreenSize, rules: string) => string;
|
|
|
3242
3309
|
|
|
3243
3310
|
declare const normalize: () => string;
|
|
3244
3311
|
|
|
3245
|
-
export { ActionBar, Alert, Avatar, Badge, Banner, BarChart, BarStack, Breadcrumbs, Breakpoint, Bullet, Button, Card, Carousel, Checkbox, CheckboxGroup, CheckboxGroupCheckbox, CopyButton, DateInput, EmptyState, Expandable, GlobalAlert, LineChart, Link, List, Loader, Menu, MenuV2, Meter, Modal, Notice, NumberInput, Pagination, PasswordCheck, PasswordStrengthMeter, PieChart, Popover, Popup, ProgressBar, Radio, RadioGroup, Row, type SCWUITheme, SelectInput, SelectableCard, Separator, Skeleton, Snippet, Stack, Status, StepList, Stepper, SwitchButton, Table, Tabs, Tag, TagInput, TagList, Text, TextArea, TextInput, TimeInput, ToastContainer, Toggle, ToggleGroup, Tooltip, type UltravioletUITheme, VerificationCode, bounce, down, extendTheme, fadeIn, fadeOut, flash, getUUID, normalize, ping, pulse, quickScaleDown, scaleBack, scaleDown, scaleForward, scaleUp, sketchIn, sketchOut, slideDownLarge, slideFromBottom, slideFromLeft, slideFromRight, slideFromTop, slideToBottom, slideToLeft, slideToRight, slideToTop, slideUpLarge, toast, unfoldIn, unfoldOut, up, zoomIn, zoomOut };
|
|
3312
|
+
export { ActionBar, Alert, Avatar, Badge, Banner, BarChart, BarStack, Breadcrumbs, Breakpoint, Bullet, Button, Card, Carousel, Checkbox, CheckboxGroup, CheckboxGroupCheckbox, CopyButton, DateInput, EmptyState, Expandable, GlobalAlert, LineChart, Link, List, Loader, Menu, MenuV2, Meter, Modal, Notice, NumberInput, NumberInputV2, Pagination, PasswordCheck, PasswordStrengthMeter, PieChart, Popover, Popup, ProgressBar, Radio, RadioGroup, Row, type SCWUITheme, SelectInput, SelectableCard, Separator, Skeleton, Snippet, Stack, Status, StepList, Stepper, SwitchButton, Table, Tabs, Tag, TagInput, TagList, Text, TextArea, TextInput$1 as TextInput, TextInput as TextInputV2, TimeInput, ToastContainer, Toggle, ToggleGroup, Tooltip, type UltravioletUITheme, VerificationCode, bounce, down, extendTheme, fadeIn, fadeOut, flash, getUUID, normalize, ping, pulse, quickScaleDown, scaleBack, scaleDown, scaleForward, scaleUp, sketchIn, sketchOut, slideDownLarge, slideFromBottom, slideFromLeft, slideFromRight, slideFromTop, slideToBottom, slideToLeft, slideToRight, slideToTop, slideUpLarge, toast, unfoldIn, unfoldOut, up, zoomIn, zoomOut };
|
|
@@ -1,289 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { memo } from 'react';
|
|
1
|
+
import 'react';
|
|
3
2
|
|
|
4
|
-
var _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _defs;
|
|
5
|
-
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); }
|
|
6
|
-
var SvgDefaultImageSmall = function SvgDefaultImageSmall(props) {
|
|
7
|
-
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
8
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
-
width: 74,
|
|
10
|
-
height: 74,
|
|
11
|
-
fill: "none"
|
|
12
|
-
}, props), /*#__PURE__*/React.createElement("g", {
|
|
13
|
-
clipPath: "url(#a)"
|
|
14
|
-
}, _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
15
|
-
fill: "url(#b)",
|
|
16
|
-
d: "M48.673 30.122c-5.451-8.997-13.4-14.099-17.876-11.548l1.136 1.914c3.954-2.253 10.982 2.266 15.805 10.217 4.89 8.047 5.664 16.568 1.736 19.024-.026.014-.066.028-.093.055l1.149 1.913s.067-.04.107-.054c4.435-2.782 3.567-12.416-1.964-21.521"
|
|
17
|
-
})), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
|
|
18
|
-
fill: "url(#c)",
|
|
19
|
-
d: "M27.385 63.597s.094-2.076.12-2.74c.027-.665.094-1.167-.801-2.497-.895-1.33-2.231-3.379-2.231-3.379l-3.848 1.913-1.43.706s1.55 1.737 1.63 2.971c.08 1.235-.267 1.9.695 3.094s7.388 8.02 7.388 8.02l4.008-2.022-5.53-6.066Z"
|
|
20
|
-
})), _path3 || (_path3 = /*#__PURE__*/React.createElement("path", {
|
|
21
|
-
fill: "url(#d)",
|
|
22
|
-
d: "m28.593 62.62-1.202.978 5.53 6.065 1.203-.977z"
|
|
23
|
-
})), _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
|
|
24
|
-
fill: "url(#e)",
|
|
25
|
-
d: "M28.724 59.879c.027-.665.094-1.167-.802-2.497-.895-1.33-2.23-3.379-2.23-3.379l-5.278 2.62s.094.094.227.27l3.848-1.913s1.336 2.05 2.231 3.38c.895 1.329.842 1.831.802 2.496-.027.665-.12 2.74-.12 2.74l1.215-.976s.094-2.076.12-2.741z"
|
|
26
|
-
})), _path5 || (_path5 = /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: "url(#f)",
|
|
28
|
-
d: "M28.66 24.477s-5.397 13.868-12.732 18.617l-3.648 2.361c-1.696 1.1-3.353 5.374-.975 9.54 2.392 4.192 7.228 4.939 9.526 3.73a94.519 94.519 0 0 1 2.94-1.546c1.736-.882 13.293-7.83 21.255-6.188 7.95 1.642-16.34-26.5-16.34-26.5z"
|
|
29
|
-
})), _path6 || (_path6 = /*#__PURE__*/React.createElement("path", {
|
|
30
|
-
fill: "url(#g)",
|
|
31
|
-
d: "M11.29 54.98c-2.378-4.165-.721-8.44.976-9.539-3.06 1.981-3.234 2.076-3.942 2.51-.935.57-3.527 4.533-1.536 8.577 1.99 4.043 6.346 6.377 10.501 4.097 1.63-.895 2.712-1.479 3.527-1.926-2.284 1.22-7.12.474-9.526-3.732z"
|
|
32
|
-
})), _path7 || (_path7 = /*#__PURE__*/React.createElement("path", {
|
|
33
|
-
fill: "url(#h)",
|
|
34
|
-
d: "M49.47 49.727c3.927-2.457 3.15-10.976-1.735-19.028-4.885-8.052-12.028-12.587-15.954-10.13-3.926 2.457-3.15 10.976 1.736 19.028 4.884 8.051 12.027 12.587 15.953 10.13"
|
|
35
|
-
})), _path8 || (_path8 = /*#__PURE__*/React.createElement("path", {
|
|
36
|
-
fill: "url(#i)",
|
|
37
|
-
d: "m40.352 30.964-8.778 4.885a35.83 35.83 0 0 0 1.95 3.745c1.123 1.845 2.352 3.5 3.648 4.925l7.562-6.336-4.382-7.233z"
|
|
38
|
-
})), _path9 || (_path9 = /*#__PURE__*/React.createElement("path", {
|
|
39
|
-
fill: "url(#j)",
|
|
40
|
-
d: "M44.744 38.195c.974-.61.781-2.722-.43-4.72-1.212-1.996-2.983-3.121-3.957-2.512-.974.61-.781 2.722.43 4.72 1.212 1.996 2.983 3.121 3.957 2.512"
|
|
41
|
-
})), _path10 || (_path10 = /*#__PURE__*/React.createElement("path", {
|
|
42
|
-
fill: "url(#k)",
|
|
43
|
-
d: "M66.207 5.277a1.84 1.84 0 0 0-1.83 1.859c0 .38.12.732.307 1.03l-18.397 14.63V17.53c0-1.507.401-2.266 1.897-3.528 1.377-1.167 6.306-4.994 7.375-5.821.294.217.668.339 1.056.339a1.84 1.84 0 0 0 1.83-1.86 1.839 1.839 0 0 0-1.83-1.858 1.84 1.84 0 0 0-1.83 1.859c0 .38.106.732.307 1.017-1.203.937-5.972 4.641-7.322 5.795-1.643 1.397-2.137 2.333-2.137 4.043v5.794L30.549 35.306l.414.529L65.165 8.642c.294.217.655.34 1.056.34a1.84 1.84 0 0 0 1.83-1.86 1.84 1.84 0 0 0-1.83-1.859zm-9.592.203c.641 0 1.162.53 1.162 1.18 0 .652-.521 1.181-1.162 1.181a1.172 1.172 0 0 1-1.163-1.18c0-.652.521-1.18 1.163-1.18Zm9.592 2.823c-.641 0-1.162-.53-1.162-1.18 0-.652.521-1.181 1.162-1.181.642 0 1.163.529 1.163 1.18 0 .651-.521 1.18-1.163 1.18Z"
|
|
44
|
-
})), _path11 || (_path11 = /*#__PURE__*/React.createElement("path", {
|
|
45
|
-
fill: "url(#l)",
|
|
46
|
-
d: "M61.756 27.802a1.783 1.783 0 0 0-1.39.176 1.772 1.772 0 0 0-.854 1.126 1.915 1.915 0 0 0 .214 1.466l-21.31 16.215.4.543 5.706-4.342c.52.15 4.181 1.153 5.584 1.56.495.136.949.217 1.363.217.962 0 1.83-.38 3.046-1.234 1.31-.923 2.886-2.144 3.514-2.62a1.79 1.79 0 0 0 1.082.367 1.84 1.84 0 0 0 1.764-1.37 1.862 1.862 0 0 0-.174-1.412 1.787 1.787 0 0 0-1.109-.868c-.975-.271-1.977.312-2.245 1.303a1.868 1.868 0 0 0 .228 1.492c-.655.502-2.165 1.656-3.434 2.551-1.59 1.127-2.418 1.33-3.848.923a992.04 992.04 0 0 1-5.09-1.425L60.18 31.072c.174.136.387.244.614.312.16.04.321.068.481.068.802 0 1.537-.543 1.764-1.37a1.862 1.862 0 0 0-.174-1.412 1.752 1.752 0 0 0-1.109-.868M57.99 39.105a1.17 1.17 0 0 1 1.43-.828c.293.082.547.285.707.557.16.271.188.597.107.895-.173.624-.815 1.004-1.43.828a1.19 1.19 0 0 1-.814-1.452m4.409-9.2c-.174.624-.815 1.004-1.43.828a1.19 1.19 0 0 1-.815-1.452 1.17 1.17 0 0 1 1.43-.828c.294.082.547.285.708.556.147.272.187.598.107.896"
|
|
47
|
-
})), _path12 || (_path12 = /*#__PURE__*/React.createElement("path", {
|
|
48
|
-
fill: "url(#m)",
|
|
49
|
-
d: "M36.666 25.305a1.84 1.84 0 0 0 1.83-1.86 1.84 1.84 0 0 0-1.83-1.858 1.84 1.84 0 0 0-1.83 1.859c0 .38.12.733.307 1.031l-6.44 5.116.414.529 6.493-5.17c.294.217.655.34 1.056.34zm0-3.04c.641 0 1.162.53 1.162 1.18 0 .652-.52 1.181-1.162 1.181a1.172 1.172 0 0 1-1.162-1.18c0-.651.52-1.18 1.162-1.18Z"
|
|
50
|
-
})), _path13 || (_path13 = /*#__PURE__*/React.createElement("path", {
|
|
51
|
-
fill: "url(#n)",
|
|
52
|
-
d: "M37.165 44.532a34.545 34.545 0 0 1-3.647-4.925 33.464 33.464 0 0 1-1.95-3.745c-3.047-6.799-3.1-13.203.226-15.28.054-.027.107-.054.147-.08l-1.135-1.914s-.107.054-.16.095c-4.436 2.782-3.568 12.416 1.963 21.52 5.478 9.038 13.467 14.153 17.93 11.521l-1.15-1.913c-3.032 1.79-7.909-.462-12.21-5.252z"
|
|
53
|
-
})), _path14 || (_path14 = /*#__PURE__*/React.createElement("path", {
|
|
54
|
-
fill: "url(#o)",
|
|
55
|
-
d: "m24.488 41.86.842-.503s1.55 3.257 3.794 5.835l-.775.502-3.607-1.737-.254-4.111z"
|
|
56
|
-
})), _path15 || (_path15 = /*#__PURE__*/React.createElement("path", {
|
|
57
|
-
fill: "url(#p)",
|
|
58
|
-
d: "M15.111 49.146s7.562-5.116 9.38-7.287c0 0 1.308 3.216 3.874 5.835 0 0-6.908 3.31-10.702 5.645 0 0-2.325-1.656-2.538-4.193z"
|
|
59
|
-
})), /*#__PURE__*/React.createElement("path", {
|
|
60
|
-
stroke: "#fff",
|
|
61
|
-
strokeMiterlimit: 10,
|
|
62
|
-
strokeWidth: 0.536,
|
|
63
|
-
d: "M56.622 56.253c6.25-3.911 5.017-17.468-2.756-30.28-7.772-12.811-19.14-20.026-25.39-16.114-6.25 3.911-5.017 17.468 2.755 30.28 7.773 12.81 19.14 20.026 25.391 16.114Z",
|
|
64
|
-
style: {
|
|
65
|
-
mixBlendMode: "overlay"
|
|
66
|
-
}
|
|
67
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
68
|
-
stroke: "#fff",
|
|
69
|
-
strokeMiterlimit: 10,
|
|
70
|
-
strokeWidth: 0.268,
|
|
71
|
-
d: "M64.34 56.088c7.136-4.466 5.723-19.95-3.156-34.587C52.304 6.865 39.32-1.379 32.185 3.086c-7.136 4.466-5.723 19.951 3.156 34.587 8.88 14.637 21.863 22.881 29 18.415Z",
|
|
72
|
-
style: {
|
|
73
|
-
mixBlendMode: "overlay"
|
|
74
|
-
}
|
|
75
|
-
})), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
76
|
-
id: "b",
|
|
77
|
-
x1: 91.092,
|
|
78
|
-
x2: 34.151,
|
|
79
|
-
y1: 28.683,
|
|
80
|
-
y2: 35.54,
|
|
81
|
-
gradientUnits: "userSpaceOnUse"
|
|
82
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
83
|
-
stopColor: "#11053A"
|
|
84
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
85
|
-
offset: 0.52,
|
|
86
|
-
stopColor: "#4F0599"
|
|
87
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
88
|
-
offset: 1,
|
|
89
|
-
stopColor: "#FF0CD0"
|
|
90
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
91
|
-
id: "c",
|
|
92
|
-
x1: 28.922,
|
|
93
|
-
x2: 17.156,
|
|
94
|
-
y1: 60.192,
|
|
95
|
-
y2: 73.838,
|
|
96
|
-
gradientUnits: "userSpaceOnUse"
|
|
97
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
98
|
-
offset: 0.02,
|
|
99
|
-
stopColor: "#11053A"
|
|
100
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
101
|
-
offset: 0.52,
|
|
102
|
-
stopColor: "#4F0597"
|
|
103
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
104
|
-
offset: 1,
|
|
105
|
-
stopColor: "#8230D7"
|
|
106
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
107
|
-
id: "d",
|
|
108
|
-
x1: 25.066,
|
|
109
|
-
x2: 32.466,
|
|
110
|
-
y1: 60.07,
|
|
111
|
-
y2: 67.716,
|
|
112
|
-
gradientUnits: "userSpaceOnUse"
|
|
113
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
114
|
-
offset: 0.02,
|
|
115
|
-
stopColor: "#11053A"
|
|
116
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
117
|
-
offset: 0.52,
|
|
118
|
-
stopColor: "#4F0597"
|
|
119
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
120
|
-
offset: 1,
|
|
121
|
-
stopColor: "#8230D7"
|
|
122
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
123
|
-
id: "e",
|
|
124
|
-
x1: 20.107,
|
|
125
|
-
x2: 28.737,
|
|
126
|
-
y1: 51.615,
|
|
127
|
-
y2: 62.177,
|
|
128
|
-
gradientUnits: "userSpaceOnUse"
|
|
129
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
130
|
-
offset: 0.02,
|
|
131
|
-
stopColor: "#11053A"
|
|
132
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
133
|
-
offset: 0.52,
|
|
134
|
-
stopColor: "#4F0597"
|
|
135
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
136
|
-
offset: 1,
|
|
137
|
-
stopColor: "#8230D7"
|
|
138
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
139
|
-
id: "f",
|
|
140
|
-
x1: 37.959,
|
|
141
|
-
x2: 18.966,
|
|
142
|
-
y1: 62.485,
|
|
143
|
-
y2: 39.039,
|
|
144
|
-
gradientUnits: "userSpaceOnUse"
|
|
145
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
146
|
-
stopColor: "#4F0599"
|
|
147
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
148
|
-
offset: 1,
|
|
149
|
-
stopColor: "#fff"
|
|
150
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
151
|
-
id: "g",
|
|
152
|
-
x1: 23.568,
|
|
153
|
-
x2: 8.639,
|
|
154
|
-
y1: 68.591,
|
|
155
|
-
y2: 50.649,
|
|
156
|
-
gradientUnits: "userSpaceOnUse"
|
|
157
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
158
|
-
stopColor: "#11053A"
|
|
159
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
160
|
-
offset: 0.52,
|
|
161
|
-
stopColor: "#4F0599"
|
|
162
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
163
|
-
offset: 1,
|
|
164
|
-
stopColor: "#FF0CD0"
|
|
165
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
166
|
-
id: "h",
|
|
167
|
-
x1: 29.284,
|
|
168
|
-
x2: 51.97,
|
|
169
|
-
y1: 35.15,
|
|
170
|
-
y2: 35.15,
|
|
171
|
-
gradientUnits: "userSpaceOnUse"
|
|
172
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
173
|
-
stopColor: "#4F0599"
|
|
174
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
175
|
-
offset: 1,
|
|
176
|
-
stopColor: "#fff"
|
|
177
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
178
|
-
id: "i",
|
|
179
|
-
x1: 40.085,
|
|
180
|
-
x2: 35.136,
|
|
181
|
-
y1: 40.544,
|
|
182
|
-
y2: 32.279,
|
|
183
|
-
gradientUnits: "userSpaceOnUse"
|
|
184
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
185
|
-
stopColor: "#4F0599"
|
|
186
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
187
|
-
offset: 1,
|
|
188
|
-
stopColor: "#fff"
|
|
189
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
190
|
-
id: "j",
|
|
191
|
-
x1: 49.398,
|
|
192
|
-
x2: 41.427,
|
|
193
|
-
y1: 31.141,
|
|
194
|
-
y2: 35.019,
|
|
195
|
-
gradientUnits: "userSpaceOnUse"
|
|
196
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
197
|
-
stopColor: "#11053A"
|
|
198
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
199
|
-
offset: 0.52,
|
|
200
|
-
stopColor: "#4F0599"
|
|
201
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
202
|
-
offset: 1,
|
|
203
|
-
stopColor: "#FF0CD0"
|
|
204
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
205
|
-
id: "k",
|
|
206
|
-
x1: 19.326,
|
|
207
|
-
x2: 39.313,
|
|
208
|
-
y1: 39.702,
|
|
209
|
-
y2: 24.601,
|
|
210
|
-
gradientUnits: "userSpaceOnUse"
|
|
211
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
212
|
-
stopColor: "#4F0597"
|
|
213
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
214
|
-
offset: 1,
|
|
215
|
-
stopColor: "#03D3DE"
|
|
216
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
217
|
-
id: "l",
|
|
218
|
-
x1: 31.99,
|
|
219
|
-
x2: 51.976,
|
|
220
|
-
y1: 56.474,
|
|
221
|
-
y2: 41.386,
|
|
222
|
-
gradientUnits: "userSpaceOnUse"
|
|
223
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
224
|
-
stopColor: "#4F0597"
|
|
225
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
226
|
-
offset: 1,
|
|
227
|
-
stopColor: "#03D3DE"
|
|
228
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
229
|
-
id: "m",
|
|
230
|
-
x1: 18.015,
|
|
231
|
-
x2: 38.001,
|
|
232
|
-
y1: 37.979,
|
|
233
|
-
y2: 22.877,
|
|
234
|
-
gradientUnits: "userSpaceOnUse"
|
|
235
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
236
|
-
stopColor: "#4F0597"
|
|
237
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
238
|
-
offset: 1,
|
|
239
|
-
stopColor: "#03D3DE"
|
|
240
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
241
|
-
id: "n",
|
|
242
|
-
x1: 91.141,
|
|
243
|
-
x2: 34.187,
|
|
244
|
-
y1: 29.063,
|
|
245
|
-
y2: 35.92,
|
|
246
|
-
gradientUnits: "userSpaceOnUse"
|
|
247
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
248
|
-
stopColor: "#11053A"
|
|
249
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
250
|
-
offset: 0.52,
|
|
251
|
-
stopColor: "#4F0599"
|
|
252
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
253
|
-
offset: 1,
|
|
254
|
-
stopColor: "#FF0CD0"
|
|
255
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
256
|
-
id: "o",
|
|
257
|
-
x1: 24.168,
|
|
258
|
-
x2: 27.201,
|
|
259
|
-
y1: 51.548,
|
|
260
|
-
y2: 43.723,
|
|
261
|
-
gradientUnits: "userSpaceOnUse"
|
|
262
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
263
|
-
stopColor: "#4F0599"
|
|
264
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
265
|
-
offset: 1,
|
|
266
|
-
stopColor: "#fff"
|
|
267
|
-
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
268
|
-
id: "p",
|
|
269
|
-
x1: 24.049,
|
|
270
|
-
x2: 18.766,
|
|
271
|
-
y1: 53.271,
|
|
272
|
-
y2: 43.433,
|
|
273
|
-
gradientUnits: "userSpaceOnUse"
|
|
274
|
-
}, /*#__PURE__*/React.createElement("stop", {
|
|
275
|
-
stopColor: "#4F0599"
|
|
276
|
-
}), /*#__PURE__*/React.createElement("stop", {
|
|
277
|
-
offset: 1,
|
|
278
|
-
stopColor: "#fff"
|
|
279
|
-
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
280
|
-
id: "a"
|
|
281
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
282
|
-
fill: "#fff",
|
|
283
|
-
d: "M0 0h74v74H0z"
|
|
284
|
-
})))));
|
|
285
|
-
};
|
|
286
|
-
var Memo = /*#__PURE__*/memo(SvgDefaultImageSmall);
|
|
287
|
-
var defaultIllustrationSmall = Memo;
|
|
3
|
+
var defaultIllustrationSmall = "data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2274%22%20height%3D%2274%22%20fill%3D%22none%22%3E%20%20%20%20%3Cg%20%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23b%29%22%20d%3D%22M48.673%2030.122c-5.451-8.997-13.4-14.099-17.876-11.548l1.136%201.914c3.954-2.253%2010.982%202.266%2015.805%2010.217%204.89%208.047%205.664%2016.568%201.736%2019.024-.026.014-.066.028-.093.055l1.149%201.913s.067-.04.107-.054c4.435-2.782%203.567-12.416-1.964-21.521%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23c%29%22%20d%3D%22M27.385%2063.597s.094-2.076.12-2.74c.027-.665.094-1.167-.801-2.497-.895-1.33-2.231-3.379-2.231-3.379l-3.848%201.913-1.43.706s1.55%201.737%201.63%202.971c.08%201.235-.267%201.9.695%203.094s7.388%208.02%207.388%208.02l4.008-2.022-5.53-6.066Z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23d%29%22%20d%3D%22m28.593%2062.62-1.202.978%205.53%206.065%201.203-.977z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23e%29%22%20d%3D%22M28.724%2059.879c.027-.665.094-1.167-.802-2.497-.895-1.33-2.23-3.379-2.23-3.379l-5.278%202.62s.094.094.227.27l3.848-1.913s1.336%202.05%202.231%203.38c.895%201.329.842%201.831.802%202.496-.027.665-.12%202.74-.12%202.74l1.215-.976s.094-2.076.12-2.741z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23f%29%22%20d%3D%22M28.66%2024.477s-5.397%2013.868-12.732%2018.617l-3.648%202.361c-1.696%201.1-3.353%205.374-.975%209.54%202.392%204.192%207.228%204.939%209.526%203.73a94.519%2094.519%200%200%201%202.94-1.546c1.736-.882%2013.293-7.83%2021.255-6.188%207.95%201.642-16.34-26.5-16.34-26.5z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23g%29%22%20d%3D%22M11.29%2054.98c-2.378-4.165-.721-8.44.976-9.539-3.06%201.981-3.234%202.076-3.942%202.51-.935.57-3.527%204.533-1.536%208.577%201.99%204.043%206.346%206.377%2010.501%204.097%201.63-.895%202.712-1.479%203.527-1.926-2.284%201.22-7.12.474-9.526-3.732z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23h%29%22%20d%3D%22M49.47%2049.727c3.927-2.457%203.15-10.976-1.735-19.028-4.885-8.052-12.028-12.587-15.954-10.13-3.926%202.457-3.15%2010.976%201.736%2019.028%204.884%208.051%2012.027%2012.587%2015.953%2010.13%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23i%29%22%20d%3D%22m40.352%2030.964-8.778%204.885a35.83%2035.83%200%200%200%201.95%203.745c1.123%201.845%202.352%203.5%203.648%204.925l7.562-6.336-4.382-7.233z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23j%29%22%20d%3D%22M44.744%2038.195c.974-.61.781-2.722-.43-4.72-1.212-1.996-2.983-3.121-3.957-2.512-.974.61-.781%202.722.43%204.72%201.212%201.996%202.983%203.121%203.957%202.512%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23k%29%22%20d%3D%22M66.207%205.277a1.84%201.84%200%200%200-1.83%201.859c0%20.38.12.732.307%201.03l-18.397%2014.63V17.53c0-1.507.401-2.266%201.897-3.528%201.377-1.167%206.306-4.994%207.375-5.821.294.217.668.339%201.056.339a1.84%201.84%200%200%200%201.83-1.86%201.839%201.839%200%200%200-1.83-1.858%201.84%201.84%200%200%200-1.83%201.859c0%20.38.106.732.307%201.017-1.203.937-5.972%204.641-7.322%205.795-1.643%201.397-2.137%202.333-2.137%204.043v5.794L30.549%2035.306l.414.529L65.165%208.642c.294.217.655.34%201.056.34a1.84%201.84%200%200%200%201.83-1.86%201.84%201.84%200%200%200-1.83-1.859zm-9.592.203c.641%200%201.162.53%201.162%201.18%200%20.652-.521%201.181-1.162%201.181a1.172%201.172%200%200%201-1.163-1.18c0-.652.521-1.18%201.163-1.18Zm9.592%202.823c-.641%200-1.162-.53-1.162-1.18%200-.652.521-1.181%201.162-1.181.642%200%201.163.529%201.163%201.18%200%20.651-.521%201.18-1.163%201.18Z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23l%29%22%20d%3D%22M61.756%2027.802a1.783%201.783%200%200%200-1.39.176%201.772%201.772%200%200%200-.854%201.126%201.915%201.915%200%200%200%20.214%201.466l-21.31%2016.215.4.543%205.706-4.342c.52.15%204.181%201.153%205.584%201.56.495.136.949.217%201.363.217.962%200%201.83-.38%203.046-1.234%201.31-.923%202.886-2.144%203.514-2.62a1.79%201.79%200%200%200%201.082.367%201.84%201.84%200%200%200%201.764-1.37%201.862%201.862%200%200%200-.174-1.412%201.787%201.787%200%200%200-1.109-.868c-.975-.271-1.977.312-2.245%201.303a1.868%201.868%200%200%200%20.228%201.492c-.655.502-2.165%201.656-3.434%202.551-1.59%201.127-2.418%201.33-3.848.923a992.04%20992.04%200%200%201-5.09-1.425L60.18%2031.072c.174.136.387.244.614.312.16.04.321.068.481.068.802%200%201.537-.543%201.764-1.37a1.862%201.862%200%200%200-.174-1.412%201.752%201.752%200%200%200-1.109-.868M57.99%2039.105a1.17%201.17%200%200%201%201.43-.828c.293.082.547.285.707.557.16.271.188.597.107.895-.173.624-.815%201.004-1.43.828a1.19%201.19%200%200%201-.814-1.452m4.409-9.2c-.174.624-.815%201.004-1.43.828a1.19%201.19%200%200%201-.815-1.452%201.17%201.17%200%200%201%201.43-.828c.294.082.547.285.708.556.147.272.187.598.107.896%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23m%29%22%20d%3D%22M36.666%2025.305a1.84%201.84%200%200%200%201.83-1.86%201.84%201.84%200%200%200-1.83-1.858%201.84%201.84%200%200%200-1.83%201.859c0%20.38.12.733.307%201.031l-6.44%205.116.414.529%206.493-5.17c.294.217.655.34%201.056.34zm0-3.04c.641%200%201.162.53%201.162%201.18%200%20.652-.52%201.181-1.162%201.181a1.172%201.172%200%200%201-1.162-1.18c0-.651.52-1.18%201.162-1.18Z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23n%29%22%20d%3D%22M37.165%2044.532a34.545%2034.545%200%200%201-3.647-4.925%2033.464%2033.464%200%200%201-1.95-3.745c-3.047-6.799-3.1-13.203.226-15.28.054-.027.107-.054.147-.08l-1.135-1.914s-.107.054-.16.095c-4.436%202.782-3.568%2012.416%201.963%2021.52%205.478%209.038%2013.467%2014.153%2017.93%2011.521l-1.15-1.913c-3.032%201.79-7.909-.462-12.21-5.252z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23o%29%22%20d%3D%22m24.488%2041.86.842-.503s1.55%203.257%203.794%205.835l-.775.502-3.607-1.737-.254-4.111z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23p%29%22%20d%3D%22M15.111%2049.146s7.562-5.116%209.38-7.287c0%200%201.308%203.216%203.874%205.835%200%200-6.908%203.31-10.702%205.645%200%200-2.325-1.656-2.538-4.193z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%22.536%22%20d%3D%22M56.622%2056.253c6.25-3.911%205.017-17.468-2.756-30.28-7.772-12.811-19.14-20.026-25.39-16.114-6.25%203.911-5.017%2017.468%202.755%2030.28%207.773%2012.81%2019.14%2020.026%2025.391%2016.114Z%22%20style%3D%22mix-blend-mode%3Aoverlay%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%22.268%22%20d%3D%22M64.34%2056.088c7.136-4.466%205.723-19.95-3.156-34.587C52.304%206.865%2039.32-1.379%2032.185%203.086c-7.136%204.466-5.723%2019.951%203.156%2034.587%208.88%2014.637%2021.863%2022.881%2029%2018.415Z%22%20style%3D%22mix-blend-mode%3Aoverlay%22%2F%3E%20%20%20%20%3C%2Fg%3E%20%20%20%20%3Cdefs%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22b%22%20x1%3D%2291.092%22%20x2%3D%2234.151%22%20y1%3D%2228.683%22%20y2%3D%2235.54%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2311053A%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22.52%22%20stop-color%3D%22%234F0599%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23FF0CD0%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22c%22%20x1%3D%2228.922%22%20x2%3D%2217.156%22%20y1%3D%2260.192%22%20y2%3D%2273.838%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22.02%22%20stop-color%3D%22%2311053A%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22.52%22%20stop-color%3D%22%234F0597%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%238230D7%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22d%22%20x1%3D%2225.066%22%20x2%3D%2232.466%22%20y1%3D%2260.07%22%20y2%3D%2267.716%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22.02%22%20stop-color%3D%22%2311053A%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22.52%22%20stop-color%3D%22%234F0597%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%238230D7%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22e%22%20x1%3D%2220.107%22%20x2%3D%2228.737%22%20y1%3D%2251.615%22%20y2%3D%2262.177%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22.02%22%20stop-color%3D%22%2311053A%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22.52%22%20stop-color%3D%22%234F0597%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%238230D7%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22f%22%20x1%3D%2237.959%22%20x2%3D%2218.966%22%20y1%3D%2262.485%22%20y2%3D%2239.039%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%234F0599%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23fff%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22g%22%20x1%3D%2223.568%22%20x2%3D%228.639%22%20y1%3D%2268.591%22%20y2%3D%2250.649%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2311053A%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22.52%22%20stop-color%3D%22%234F0599%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23FF0CD0%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22h%22%20x1%3D%2229.284%22%20x2%3D%2251.97%22%20y1%3D%2235.15%22%20y2%3D%2235.15%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%234F0599%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23fff%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22i%22%20x1%3D%2240.085%22%20x2%3D%2235.136%22%20y1%3D%2240.544%22%20y2%3D%2232.279%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%234F0599%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23fff%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22j%22%20x1%3D%2249.398%22%20x2%3D%2241.427%22%20y1%3D%2231.141%22%20y2%3D%2235.019%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2311053A%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22.52%22%20stop-color%3D%22%234F0599%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23FF0CD0%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22k%22%20x1%3D%2219.326%22%20x2%3D%2239.313%22%20y1%3D%2239.702%22%20y2%3D%2224.601%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%234F0597%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%2303D3DE%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22l%22%20x1%3D%2231.99%22%20x2%3D%2251.976%22%20y1%3D%2256.474%22%20y2%3D%2241.386%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%234F0597%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%2303D3DE%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22m%22%20x1%3D%2218.015%22%20x2%3D%2238.001%22%20y1%3D%2237.979%22%20y2%3D%2222.877%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%234F0597%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%2303D3DE%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22n%22%20x1%3D%2291.141%22%20x2%3D%2234.187%22%20y1%3D%2229.063%22%20y2%3D%2235.92%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2311053A%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22.52%22%20stop-color%3D%22%234F0599%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23FF0CD0%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22o%22%20x1%3D%2224.168%22%20x2%3D%2227.201%22%20y1%3D%2251.548%22%20y2%3D%2243.723%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%234F0599%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23fff%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22p%22%20x1%3D%2224.049%22%20x2%3D%2218.766%22%20y1%3D%2253.271%22%20y2%3D%2243.433%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%234F0599%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23fff%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3CclipPath%20id%3D%22a%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h74v74H0z%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FclipPath%3E%20%20%20%20%3C%2Fdefs%3E%3C%2Fsvg%3E";
|
|
288
4
|
|
|
289
5
|
export { defaultIllustrationSmall as default };
|