one-design-next 0.0.70 → 0.0.72
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/dist/artifact/actions.d.ts +17 -0
- package/dist/artifact/actions.js +29 -0
- package/dist/artifact/glow.d.ts +7 -0
- package/dist/artifact/glow.js +17 -0
- package/dist/artifact/icons/ArtifactFileIcon.d.ts +17 -0
- package/dist/artifact/icons/ArtifactFileIcon.js +72 -0
- package/dist/artifact/icons/file-icons.d.ts +80 -0
- package/dist/artifact/icons/file-icons.js +86 -0
- package/dist/artifact/icons/index.d.ts +2 -0
- package/dist/artifact/icons/index.js +2 -0
- package/dist/artifact/icons/medium/csv.svg +25 -0
- package/dist/artifact/icons/medium/docx.svg +25 -0
- package/dist/artifact/icons/medium/file.svg +25 -0
- package/dist/artifact/icons/medium/html.svg +25 -0
- package/dist/artifact/icons/medium/md.svg +25 -0
- package/dist/artifact/icons/medium/pdf.svg +25 -0
- package/dist/artifact/icons/medium/pptx.svg +25 -0
- package/dist/artifact/icons/medium/xlsx.svg +25 -0
- package/dist/artifact/icons/small/csv.svg +19 -0
- package/dist/artifact/icons/small/docx.svg +19 -0
- package/dist/artifact/icons/small/file.svg +19 -0
- package/dist/artifact/icons/small/html.svg +19 -0
- package/dist/artifact/icons/small/md.svg +19 -0
- package/dist/artifact/icons/small/pdf.svg +19 -0
- package/dist/artifact/icons/small/pptx.svg +19 -0
- package/dist/artifact/icons/small/xlsx.svg +19 -0
- package/dist/artifact/index.d.ts +34 -15
- package/dist/artifact/index.js +187 -180
- package/dist/artifact/style/index.css +194 -162
- package/dist/chat-item/index.js +39 -7
- package/dist/dialog/style/index.css +1 -1
- package/dist/drawer/style/index.css +2 -0
- package/dist/dropdown/index.js +5 -2
- package/dist/icon/svg-data.d.ts +4 -0
- package/dist/icon/svg-data.js +1 -1
- package/dist/icon/types.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/preview-panel/index.js +55 -8
- package/dist/preview-panel/style/index.css +84 -6
- package/dist/stream-text/highlight-query-text.d.ts +8 -0
- package/dist/stream-text/highlight-query-text.js +44 -0
- package/dist/stream-text/index.d.ts +4 -2
- package/dist/stream-text/index.js +21 -16
- package/dist/stream-text/style/index.css +16 -0
- package/dist/style/base.css +1 -1
- package/dist/tooltip/index.js +25 -9
- package/dist/user-bubble/index.d.ts +4 -2
- package/dist/user-bubble/index.js +5 -3
- package/dist/user-bubble/render-segments.d.ts +1 -1
- package/dist/user-bubble/render-segments.js +7 -4
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { IconName } from '../icon';
|
|
2
|
+
import type { ArtifactFileIconType } from './icons';
|
|
3
|
+
/** 点击产物时的预期行为类型。 */
|
|
4
|
+
export type ArtifactActionKind = 'preview' | 'download';
|
|
5
|
+
export interface ArtifactAction {
|
|
6
|
+
kind: ArtifactActionKind;
|
|
7
|
+
/** 操作含义(供无障碍 / 文档;UI 仅展示 Icon) */
|
|
8
|
+
label: string;
|
|
9
|
+
/** hover 时展示的操作 Icon */
|
|
10
|
+
icon: IconName;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* 按文件类型给出点击预期:
|
|
14
|
+
* - html / md / csv / file → 预览(arrow-right)
|
|
15
|
+
* - pdf / xlsx / docx / pptx → 下载(arrow-down-to-line)
|
|
16
|
+
*/
|
|
17
|
+
export declare function getArtifactAction(fileType: ArtifactFileIconType): ArtifactAction;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/** 点击产物时的预期行为类型。 */
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 按文件类型给出点击预期:
|
|
5
|
+
* - html / md / csv / file → 预览(arrow-right)
|
|
6
|
+
* - pdf / xlsx / docx / pptx → 下载(arrow-down-to-line)
|
|
7
|
+
*/
|
|
8
|
+
export function getArtifactAction(fileType) {
|
|
9
|
+
switch (fileType) {
|
|
10
|
+
case 'html':
|
|
11
|
+
case 'md':
|
|
12
|
+
case 'csv':
|
|
13
|
+
case 'file':
|
|
14
|
+
return {
|
|
15
|
+
kind: 'preview',
|
|
16
|
+
label: '预览详情',
|
|
17
|
+
icon: 'arrow-right'
|
|
18
|
+
};
|
|
19
|
+
case 'pdf':
|
|
20
|
+
case 'xlsx':
|
|
21
|
+
case 'docx':
|
|
22
|
+
case 'pptx':
|
|
23
|
+
return {
|
|
24
|
+
kind: 'download',
|
|
25
|
+
label: '下载导出',
|
|
26
|
+
icon: 'arrow-down-to-line'
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ArtifactFileIconType } from './icons';
|
|
2
|
+
/**
|
|
3
|
+
* 各文件类型的 hover 光晕色(与 medium Icon 主色一致)。
|
|
4
|
+
* 用于 Card 左侧大面积 radial glow(对齐即梦 `--glow-color`)。
|
|
5
|
+
*/
|
|
6
|
+
export declare const ARTIFACT_FILE_GLOW_COLORS: Record<ArtifactFileIconType, string>;
|
|
7
|
+
export declare function getArtifactGlowColor(fileType: ArtifactFileIconType): string;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 各文件类型的 hover 光晕色(与 medium Icon 主色一致)。
|
|
3
|
+
* 用于 Card 左侧大面积 radial glow(对齐即梦 `--glow-color`)。
|
|
4
|
+
*/
|
|
5
|
+
export var ARTIFACT_FILE_GLOW_COLORS = {
|
|
6
|
+
csv: '#00C7BE',
|
|
7
|
+
docx: '#296BEF',
|
|
8
|
+
file: '#A3A9B6',
|
|
9
|
+
html: '#F06617',
|
|
10
|
+
md: '#848B98',
|
|
11
|
+
pdf: '#E63D2E',
|
|
12
|
+
pptx: '#FA8E00',
|
|
13
|
+
xlsx: '#07C160'
|
|
14
|
+
};
|
|
15
|
+
export function getArtifactGlowColor(fileType) {
|
|
16
|
+
return ARTIFACT_FILE_GLOW_COLORS[fileType];
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { HTMLAttributes } from 'react';
|
|
2
|
+
import { type ArtifactFileIconSize, type ArtifactFileIconType } from './file-icons';
|
|
3
|
+
export interface ArtifactFileIconProps extends Omit<HTMLAttributes<HTMLSpanElement>, 'children'> {
|
|
4
|
+
type: ArtifactFileIconType;
|
|
5
|
+
/** medium = Card;small = Small 形态。 */
|
|
6
|
+
size?: ArtifactFileIconSize;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Artifact 文件类型图标。
|
|
10
|
+
* - medium:占位 32×36,源 38×39
|
|
11
|
+
* - small:占位 14×16,源 17×18
|
|
12
|
+
*/
|
|
13
|
+
export declare function ArtifactFileIcon({ type, size, className, style, ...rest }: ArtifactFileIconProps): import("react").JSX.Element;
|
|
14
|
+
export declare namespace ArtifactFileIcon {
|
|
15
|
+
var displayName: string;
|
|
16
|
+
}
|
|
17
|
+
export default ArtifactFileIcon;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
+
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
3
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
4
|
+
var _excluded = ["type", "size", "className", "style"];
|
|
5
|
+
import { ARTIFACT_FILE_ICON_MEDIUM_SIZE, ARTIFACT_FILE_ICON_MEDIUM_VIEWBOX, ARTIFACT_FILE_ICON_SMALL_SIZE, ARTIFACT_FILE_ICON_SMALL_VIEWBOX, artifactFileIcons } from "./file-icons";
|
|
6
|
+
var ICON_LAYOUT = {
|
|
7
|
+
medium: {
|
|
8
|
+
size: ARTIFACT_FILE_ICON_MEDIUM_SIZE,
|
|
9
|
+
view: ARTIFACT_FILE_ICON_MEDIUM_VIEWBOX,
|
|
10
|
+
/** 文档主体从 y=3 起 */
|
|
11
|
+
contentOffsetY: 3
|
|
12
|
+
},
|
|
13
|
+
small: {
|
|
14
|
+
size: ARTIFACT_FILE_ICON_SMALL_SIZE,
|
|
15
|
+
view: ARTIFACT_FILE_ICON_SMALL_VIEWBOX,
|
|
16
|
+
/** 文档主体从 y≈1.333 起 */
|
|
17
|
+
contentOffsetY: 4 / 3
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Artifact 文件类型图标。
|
|
23
|
+
* - medium:占位 32×36,源 38×39
|
|
24
|
+
* - small:占位 14×16,源 17×18
|
|
25
|
+
*/
|
|
26
|
+
export function ArtifactFileIcon(_ref) {
|
|
27
|
+
var type = _ref.type,
|
|
28
|
+
_ref$size = _ref.size,
|
|
29
|
+
size = _ref$size === void 0 ? 'medium' : _ref$size,
|
|
30
|
+
className = _ref.className,
|
|
31
|
+
style = _ref.style,
|
|
32
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
33
|
+
var src = artifactFileIcons[size][type];
|
|
34
|
+
var layout = ICON_LAYOUT[size];
|
|
35
|
+
var _layout$size = layout.size,
|
|
36
|
+
width = _layout$size.width,
|
|
37
|
+
height = _layout$size.height;
|
|
38
|
+
var view = layout.view;
|
|
39
|
+
return /*#__PURE__*/React.createElement("span", _extends({
|
|
40
|
+
"data-odn-artifact-file-icon": true,
|
|
41
|
+
"data-odn-artifact-file-icon-type": type,
|
|
42
|
+
"data-odn-artifact-file-icon-size": size,
|
|
43
|
+
className: className,
|
|
44
|
+
style: _objectSpread({
|
|
45
|
+
position: 'relative',
|
|
46
|
+
display: 'inline-block',
|
|
47
|
+
width: width,
|
|
48
|
+
height: height,
|
|
49
|
+
flexShrink: 0,
|
|
50
|
+
overflow: 'visible',
|
|
51
|
+
lineHeight: 0
|
|
52
|
+
}, style)
|
|
53
|
+
}, rest), /*#__PURE__*/React.createElement("img", {
|
|
54
|
+
src: src,
|
|
55
|
+
alt: "",
|
|
56
|
+
width: view.width,
|
|
57
|
+
height: view.height,
|
|
58
|
+
draggable: false,
|
|
59
|
+
style: {
|
|
60
|
+
position: 'absolute',
|
|
61
|
+
left: 0,
|
|
62
|
+
top: -layout.contentOffsetY,
|
|
63
|
+
width: view.width,
|
|
64
|
+
height: view.height,
|
|
65
|
+
maxWidth: 'none',
|
|
66
|
+
display: 'block',
|
|
67
|
+
pointerEvents: 'none'
|
|
68
|
+
}
|
|
69
|
+
}));
|
|
70
|
+
}
|
|
71
|
+
ArtifactFileIcon.displayName = 'ArtifactFileIcon';
|
|
72
|
+
export default ArtifactFileIcon;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Artifact 文件类型图标(与稿面 / 资源包对齐)。
|
|
3
|
+
* `file`:未单独定义颜色/Icon 的通用回退(浅灰)。
|
|
4
|
+
*/
|
|
5
|
+
export type ArtifactFileIconType = 'csv' | 'docx' | 'file' | 'html' | 'md' | 'pdf' | 'pptx' | 'xlsx';
|
|
6
|
+
/**
|
|
7
|
+
* 图标尺寸档位,与 Artifact `size` 对齐:
|
|
8
|
+
* - medium:Card 形态(含扩展名文字)
|
|
9
|
+
* - small:Small 形态(色块 + sparkle,无扩展名文字)
|
|
10
|
+
*/
|
|
11
|
+
export type ArtifactFileIconSize = 'medium' | 'small';
|
|
12
|
+
/** medium 展示占位(稿面 32×36)。 */
|
|
13
|
+
export declare const ARTIFACT_FILE_ICON_MEDIUM_SIZE: {
|
|
14
|
+
readonly width: 32;
|
|
15
|
+
readonly height: 36;
|
|
16
|
+
};
|
|
17
|
+
/** medium SVG 画板(38×39,含折角阴影 bleed)。 */
|
|
18
|
+
export declare const ARTIFACT_FILE_ICON_MEDIUM_VIEWBOX: {
|
|
19
|
+
readonly width: 38;
|
|
20
|
+
readonly height: 39;
|
|
21
|
+
};
|
|
22
|
+
/** small 展示占位(文档主体约 14×16)。 */
|
|
23
|
+
export declare const ARTIFACT_FILE_ICON_SMALL_SIZE: {
|
|
24
|
+
readonly width: 14;
|
|
25
|
+
readonly height: 16;
|
|
26
|
+
};
|
|
27
|
+
/** small SVG 画板(17×18,含折角阴影 bleed)。 */
|
|
28
|
+
export declare const ARTIFACT_FILE_ICON_SMALL_VIEWBOX: {
|
|
29
|
+
readonly width: 17;
|
|
30
|
+
readonly height: 18;
|
|
31
|
+
};
|
|
32
|
+
export declare const ARTIFACT_FILE_ICON_TYPES: readonly ["csv", "docx", "file", "html", "md", "pdf", "pptx", "xlsx"];
|
|
33
|
+
/**
|
|
34
|
+
* 已单独定义颜色 / Icon 的扩展名(不含通用 `file`)。
|
|
35
|
+
* 推断时仅这些后缀会命中专属 Icon;其余一律回退 `file`。
|
|
36
|
+
*/
|
|
37
|
+
export declare const ARTIFACT_DEDICATED_FILE_ICON_TYPES: readonly ["csv", "docx", "html", "md", "pdf", "pptx", "xlsx"];
|
|
38
|
+
export declare const artifactFileIconsMedium: {
|
|
39
|
+
readonly csv: any;
|
|
40
|
+
readonly docx: any;
|
|
41
|
+
readonly file: any;
|
|
42
|
+
readonly html: any;
|
|
43
|
+
readonly md: any;
|
|
44
|
+
readonly pdf: any;
|
|
45
|
+
readonly pptx: any;
|
|
46
|
+
readonly xlsx: any;
|
|
47
|
+
};
|
|
48
|
+
export declare const artifactFileIconsSmall: {
|
|
49
|
+
readonly csv: any;
|
|
50
|
+
readonly docx: any;
|
|
51
|
+
readonly file: any;
|
|
52
|
+
readonly html: any;
|
|
53
|
+
readonly md: any;
|
|
54
|
+
readonly pdf: any;
|
|
55
|
+
readonly pptx: any;
|
|
56
|
+
readonly xlsx: any;
|
|
57
|
+
};
|
|
58
|
+
export declare const artifactFileIcons: {
|
|
59
|
+
readonly medium: {
|
|
60
|
+
readonly csv: any;
|
|
61
|
+
readonly docx: any;
|
|
62
|
+
readonly file: any;
|
|
63
|
+
readonly html: any;
|
|
64
|
+
readonly md: any;
|
|
65
|
+
readonly pdf: any;
|
|
66
|
+
readonly pptx: any;
|
|
67
|
+
readonly xlsx: any;
|
|
68
|
+
};
|
|
69
|
+
readonly small: {
|
|
70
|
+
readonly csv: any;
|
|
71
|
+
readonly docx: any;
|
|
72
|
+
readonly file: any;
|
|
73
|
+
readonly html: any;
|
|
74
|
+
readonly md: any;
|
|
75
|
+
readonly pdf: any;
|
|
76
|
+
readonly pptx: any;
|
|
77
|
+
readonly xlsx: any;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
export declare function getArtifactFileIconUrl(type: ArtifactFileIconType, size?: ArtifactFileIconSize): string;
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import csvMedium from "./medium/csv.svg";
|
|
2
|
+
import docxMedium from "./medium/docx.svg";
|
|
3
|
+
import fileMedium from "./medium/file.svg";
|
|
4
|
+
import htmlMedium from "./medium/html.svg";
|
|
5
|
+
import mdMedium from "./medium/md.svg";
|
|
6
|
+
import pdfMedium from "./medium/pdf.svg";
|
|
7
|
+
import pptxMedium from "./medium/pptx.svg";
|
|
8
|
+
import xlsxMedium from "./medium/xlsx.svg";
|
|
9
|
+
import csvSmall from "./small/csv.svg";
|
|
10
|
+
import docxSmall from "./small/docx.svg";
|
|
11
|
+
import fileSmall from "./small/file.svg";
|
|
12
|
+
import htmlSmall from "./small/html.svg";
|
|
13
|
+
import mdSmall from "./small/md.svg";
|
|
14
|
+
import pdfSmall from "./small/pdf.svg";
|
|
15
|
+
import pptxSmall from "./small/pptx.svg";
|
|
16
|
+
import xlsxSmall from "./small/xlsx.svg";
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Artifact 文件类型图标(与稿面 / 资源包对齐)。
|
|
20
|
+
* `file`:未单独定义颜色/Icon 的通用回退(浅灰)。
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* 图标尺寸档位,与 Artifact `size` 对齐:
|
|
25
|
+
* - medium:Card 形态(含扩展名文字)
|
|
26
|
+
* - small:Small 形态(色块 + sparkle,无扩展名文字)
|
|
27
|
+
*/
|
|
28
|
+
|
|
29
|
+
/** medium 展示占位(稿面 32×36)。 */
|
|
30
|
+
export var ARTIFACT_FILE_ICON_MEDIUM_SIZE = {
|
|
31
|
+
width: 32,
|
|
32
|
+
height: 36
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
/** medium SVG 画板(38×39,含折角阴影 bleed)。 */
|
|
36
|
+
export var ARTIFACT_FILE_ICON_MEDIUM_VIEWBOX = {
|
|
37
|
+
width: 38,
|
|
38
|
+
height: 39
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
/** small 展示占位(文档主体约 14×16)。 */
|
|
42
|
+
export var ARTIFACT_FILE_ICON_SMALL_SIZE = {
|
|
43
|
+
width: 14,
|
|
44
|
+
height: 16
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
/** small SVG 画板(17×18,含折角阴影 bleed)。 */
|
|
48
|
+
export var ARTIFACT_FILE_ICON_SMALL_VIEWBOX = {
|
|
49
|
+
width: 17,
|
|
50
|
+
height: 18
|
|
51
|
+
};
|
|
52
|
+
export var ARTIFACT_FILE_ICON_TYPES = ['csv', 'docx', 'file', 'html', 'md', 'pdf', 'pptx', 'xlsx'];
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* 已单独定义颜色 / Icon 的扩展名(不含通用 `file`)。
|
|
56
|
+
* 推断时仅这些后缀会命中专属 Icon;其余一律回退 `file`。
|
|
57
|
+
*/
|
|
58
|
+
export var ARTIFACT_DEDICATED_FILE_ICON_TYPES = ['csv', 'docx', 'html', 'md', 'pdf', 'pptx', 'xlsx'];
|
|
59
|
+
export var artifactFileIconsMedium = {
|
|
60
|
+
csv: csvMedium,
|
|
61
|
+
docx: docxMedium,
|
|
62
|
+
file: fileMedium,
|
|
63
|
+
html: htmlMedium,
|
|
64
|
+
md: mdMedium,
|
|
65
|
+
pdf: pdfMedium,
|
|
66
|
+
pptx: pptxMedium,
|
|
67
|
+
xlsx: xlsxMedium
|
|
68
|
+
};
|
|
69
|
+
export var artifactFileIconsSmall = {
|
|
70
|
+
csv: csvSmall,
|
|
71
|
+
docx: docxSmall,
|
|
72
|
+
file: fileSmall,
|
|
73
|
+
html: htmlSmall,
|
|
74
|
+
md: mdSmall,
|
|
75
|
+
pdf: pdfSmall,
|
|
76
|
+
pptx: pptxSmall,
|
|
77
|
+
xlsx: xlsxSmall
|
|
78
|
+
};
|
|
79
|
+
export var artifactFileIcons = {
|
|
80
|
+
medium: artifactFileIconsMedium,
|
|
81
|
+
small: artifactFileIconsSmall
|
|
82
|
+
};
|
|
83
|
+
export function getArtifactFileIconUrl(type) {
|
|
84
|
+
var size = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'medium';
|
|
85
|
+
return artifactFileIcons[size][type];
|
|
86
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { ArtifactFileIcon, default, type ArtifactFileIconProps, } from './ArtifactFileIcon';
|
|
2
|
+
export { ARTIFACT_DEDICATED_FILE_ICON_TYPES, ARTIFACT_FILE_ICON_MEDIUM_SIZE, ARTIFACT_FILE_ICON_MEDIUM_VIEWBOX, ARTIFACT_FILE_ICON_SMALL_SIZE, ARTIFACT_FILE_ICON_SMALL_VIEWBOX, ARTIFACT_FILE_ICON_TYPES, artifactFileIcons, artifactFileIconsMedium, artifactFileIconsSmall, getArtifactFileIconUrl, type ArtifactFileIconSize, type ArtifactFileIconType, } from './file-icons';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { ArtifactFileIcon, default } from "./ArtifactFileIcon";
|
|
2
|
+
export { ARTIFACT_DEDICATED_FILE_ICON_TYPES, ARTIFACT_FILE_ICON_MEDIUM_SIZE, ARTIFACT_FILE_ICON_MEDIUM_VIEWBOX, ARTIFACT_FILE_ICON_SMALL_SIZE, ARTIFACT_FILE_ICON_SMALL_VIEWBOX, ARTIFACT_FILE_ICON_TYPES, artifactFileIcons, artifactFileIconsMedium, artifactFileIconsSmall, getArtifactFileIconUrl } from "./file-icons";
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg width="38" height="39" viewBox="0 0 38 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="white" style="fill:white;fill-opacity:1;"/>
|
|
3
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="url(#paint0_linear_8761_165186)"/>
|
|
4
|
+
<path d="M12.1947 12.1467C11.6096 11.8656 11.1345 11.3904 10.8532 10.8053C10.8362 10.7699 10.8199 10.7341 10.8043 10.6978C10.7919 10.669 10.7799 10.64 10.7685 10.6107C10.7341 10.523 10.704 10.4333 10.6784 10.3416C10.6707 10.3141 10.6633 10.2862 10.6564 10.2582C10.6021 10.0387 10.5733 9.80928 10.5733 9.57328C10.5733 9.25328 10.32 9 10 9C9.68 9 9.42667 9.25328 9.42667 9.57328C9.42667 9.80928 9.39786 10.0387 9.34358 10.2582C9.33667 10.2862 9.32934 10.3141 9.32162 10.3416C9.29597 10.4333 9.26586 10.523 9.23154 10.6107C9.22006 10.64 9.20811 10.669 9.19571 10.6978C9.18013 10.7341 9.16382 10.7699 9.1468 10.8053C8.86554 11.3904 8.39045 11.8656 7.80526 12.1467C7.76986 12.1638 7.73403 12.1802 7.69784 12.1957C7.66902 12.2082 7.63994 12.22 7.61064 12.2315C7.52299 12.2659 7.43322 12.296 7.34162 12.3216C7.314 12.3293 7.28622 12.3366 7.25827 12.3435C7.03878 12.3979 6.80936 12.4267 6.57333 12.4267C6.25333 12.4267 6 12.68 6 13C6 13.32 6.25333 13.5733 6.57333 13.5733C6.80936 13.5733 7.03878 13.6021 7.25827 13.6565C7.28622 13.6634 7.314 13.6707 7.34162 13.6784C7.43322 13.704 7.52301 13.7341 7.61066 13.7685C7.63995 13.78 7.66902 13.7918 7.69784 13.8043C7.73403 13.8198 7.76986 13.8362 7.80526 13.8533C8.39045 14.1344 8.86554 14.6096 9.1468 15.1947C9.16382 15.2301 9.18013 15.2659 9.19571 15.3022C9.20811 15.331 9.22006 15.36 9.23154 15.3893C9.26586 15.477 9.29597 15.5667 9.32162 15.6584C9.32934 15.6859 9.33667 15.7138 9.34358 15.7418C9.39786 15.9613 9.42667 16.1907 9.42667 16.4267C9.42667 16.7467 9.68 17 10 17C10.32 17 10.5733 16.7467 10.5733 16.4267C10.5733 16.1907 10.6021 15.9613 10.6564 15.7418C10.6633 15.7138 10.6707 15.6859 10.6784 15.6584C10.704 15.5667 10.7341 15.477 10.7685 15.3893C10.7799 15.36 10.7919 15.331 10.8043 15.3022C10.8199 15.2659 10.8362 15.2301 10.8532 15.1947C11.1345 14.6096 11.6096 14.1344 12.1947 13.8533C12.2301 13.8362 12.266 13.8198 12.3022 13.8043C12.331 13.7918 12.3601 13.78 12.3894 13.7685C12.477 13.7341 12.5668 13.704 12.6584 13.6784C12.686 13.6707 12.7138 13.6634 12.7417 13.6565C12.9612 13.6021 13.1906 13.5733 13.4267 13.5733C13.7467 13.5733 14 13.32 14 13C14 12.68 13.7467 12.4267 13.4267 12.4267C13.1906 12.4267 12.9612 12.3979 12.7417 12.3435C12.7138 12.3366 12.686 12.3293 12.6584 12.3216C12.5668 12.296 12.477 12.2659 12.3893 12.2315C12.36 12.22 12.331 12.2082 12.3022 12.1957C12.266 12.1802 12.2301 12.1638 12.1947 12.1467Z" fill="#00C7BE" style="fill:#00C7BE;fill:color(display-p3 0.0000 0.7804 0.7451);fill-opacity:1;"/>
|
|
5
|
+
<path d="M11.4649 26.221C12.0679 26.221 12.5449 26.356 12.9049 26.626C13.2739 26.914 13.5079 27.346 13.5979 27.931H12.5809C12.5179 27.634 12.3919 27.418 12.2119 27.274C12.0229 27.13 11.7709 27.058 11.4649 27.058C11.0869 27.058 10.7899 27.193 10.5739 27.481C10.3579 27.76 10.2499 28.156 10.2499 28.66C10.2499 29.173 10.3489 29.578 10.5649 29.866C10.7629 30.145 11.0599 30.289 11.4559 30.289C12.1399 30.289 12.5179 29.947 12.5989 29.272H13.6159C13.5079 29.902 13.2649 30.37 12.8959 30.676C12.5359 30.973 12.0499 31.126 11.4469 31.126C10.7269 31.126 10.1689 30.892 9.77291 30.424C9.38591 29.974 9.19691 29.389 9.19691 28.669C9.19691 27.967 9.38591 27.391 9.76391 26.95C10.1689 26.464 10.7359 26.221 11.4649 26.221ZM16.1768 26.221C17.4008 26.221 18.0758 26.707 18.1838 27.697H17.1848C17.1128 27.463 17.0048 27.292 16.8608 27.202C16.7078 27.103 16.4738 27.058 16.1588 27.058C15.8888 27.058 15.6818 27.094 15.5468 27.175C15.3848 27.256 15.3128 27.382 15.3128 27.562C15.3128 27.706 15.4298 27.841 15.6818 27.949C15.8348 28.012 16.1408 28.102 16.6088 28.219C17.1308 28.345 17.5268 28.489 17.7788 28.66C18.1478 28.894 18.3368 29.227 18.3368 29.641C18.3368 30.631 17.6348 31.126 16.2398 31.126C14.9438 31.126 14.2508 30.577 14.1518 29.488H15.1508C15.2048 29.785 15.3128 29.992 15.4658 30.118C15.6188 30.226 15.8618 30.289 16.2038 30.289C16.9238 30.289 17.2838 30.091 17.2838 29.713C17.2838 29.497 17.1488 29.326 16.8788 29.2C16.7348 29.128 16.4288 29.047 15.9608 28.939C15.4118 28.813 15.0248 28.678 14.7998 28.534C14.4398 28.309 14.2598 27.994 14.2598 27.589C14.2598 27.157 14.4308 26.824 14.7908 26.59C15.1418 26.338 15.6008 26.221 16.1768 26.221ZM18.6554 26.347H19.7714L20.8874 29.722L22.0034 26.347H23.1194L21.4004 31H20.3744L18.6554 26.347Z" fill="#00C7BE" style="fill:#00C7BE;fill:color(display-p3 0.0000 0.7804 0.7451);fill-opacity:1;"/>
|
|
6
|
+
<g filter="url(#filter0_d_8761_165186)">
|
|
7
|
+
<path d="M20 3L32 15H26C22.6863 15 20 12.3137 20 9V3Z" fill="#E6F9F9" style="fill:#E6F9F9;fill:color(display-p3 0.9027 0.9783 0.9748);fill-opacity:1;"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<filter id="filter0_d_8761_165186" x="14" y="0" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
11
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
12
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
13
|
+
<feOffset dy="3"/>
|
|
14
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
15
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
16
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
17
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8761_165186"/>
|
|
18
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8761_165186" result="shape"/>
|
|
19
|
+
</filter>
|
|
20
|
+
<linearGradient id="paint0_linear_8761_165186" x1="0" y1="3" x2="31" y2="40" gradientUnits="userSpaceOnUse">
|
|
21
|
+
<stop stop-color="#00C7BE" stop-opacity="0.2" style="stop-color:#00C7BE;stop-color:color(display-p3 0.0000 0.7804 0.7451);stop-opacity:0.2;"/>
|
|
22
|
+
<stop offset="1" stop-color="#00C7BE" stop-opacity="0.3" style="stop-color:#00C7BE;stop-color:color(display-p3 0.0000 0.7804 0.7451);stop-opacity:0.3;"/>
|
|
23
|
+
</linearGradient>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg width="38" height="39" viewBox="0 0 38 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="white" style="fill:white;fill-opacity:1;"/>
|
|
3
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="url(#paint0_linear_8761_165187)"/>
|
|
4
|
+
<path d="M12.1947 12.1467C11.6096 11.8656 11.1345 11.3904 10.8532 10.8053C10.8362 10.7699 10.8199 10.7341 10.8043 10.6978C10.7919 10.669 10.7799 10.64 10.7685 10.6107C10.7341 10.523 10.704 10.4333 10.6784 10.3416C10.6707 10.3141 10.6633 10.2862 10.6564 10.2582C10.6021 10.0387 10.5733 9.80928 10.5733 9.57328C10.5733 9.25328 10.32 9 10 9C9.68 9 9.42667 9.25328 9.42667 9.57328C9.42667 9.80928 9.39786 10.0387 9.34358 10.2582C9.33667 10.2862 9.32934 10.3141 9.32162 10.3416C9.29597 10.4333 9.26586 10.523 9.23154 10.6107C9.22006 10.64 9.20811 10.669 9.19571 10.6978C9.18013 10.7341 9.16382 10.7699 9.1468 10.8053C8.86554 11.3904 8.39045 11.8656 7.80526 12.1467C7.76986 12.1638 7.73403 12.1802 7.69784 12.1957C7.66902 12.2082 7.63994 12.22 7.61064 12.2315C7.52299 12.2659 7.43322 12.296 7.34162 12.3216C7.314 12.3293 7.28622 12.3366 7.25827 12.3435C7.03878 12.3979 6.80936 12.4267 6.57333 12.4267C6.25333 12.4267 6 12.68 6 13C6 13.32 6.25333 13.5733 6.57333 13.5733C6.80936 13.5733 7.03878 13.6021 7.25827 13.6565C7.28622 13.6634 7.314 13.6707 7.34162 13.6784C7.43322 13.704 7.52301 13.7341 7.61066 13.7685C7.63995 13.78 7.66902 13.7918 7.69784 13.8043C7.73403 13.8198 7.76986 13.8362 7.80526 13.8533C8.39045 14.1344 8.86554 14.6096 9.1468 15.1947C9.16382 15.2301 9.18013 15.2659 9.19571 15.3022C9.20811 15.331 9.22006 15.36 9.23154 15.3893C9.26586 15.477 9.29597 15.5667 9.32162 15.6584C9.32934 15.6859 9.33667 15.7138 9.34358 15.7418C9.39786 15.9613 9.42667 16.1907 9.42667 16.4267C9.42667 16.7467 9.68 17 10 17C10.32 17 10.5733 16.7467 10.5733 16.4267C10.5733 16.1907 10.6021 15.9613 10.6564 15.7418C10.6633 15.7138 10.6707 15.6859 10.6784 15.6584C10.704 15.5667 10.7341 15.477 10.7685 15.3893C10.7799 15.36 10.7919 15.331 10.8043 15.3022C10.8199 15.2659 10.8362 15.2301 10.8532 15.1947C11.1345 14.6096 11.6096 14.1344 12.1947 13.8533C12.2301 13.8362 12.266 13.8198 12.3022 13.8043C12.331 13.7918 12.3601 13.78 12.3894 13.7685C12.477 13.7341 12.5668 13.704 12.6584 13.6784C12.686 13.6707 12.7138 13.6634 12.7417 13.6565C12.9612 13.6021 13.1906 13.5733 13.4267 13.5733C13.7467 13.5733 14 13.32 14 13C14 12.68 13.7467 12.4267 13.4267 12.4267C13.1906 12.4267 12.9612 12.3979 12.7417 12.3435C12.7138 12.3366 12.686 12.3293 12.6584 12.3216C12.5668 12.296 12.477 12.2659 12.3893 12.2315C12.36 12.22 12.331 12.2082 12.3022 12.1957C12.266 12.1802 12.2301 12.1638 12.1947 12.1467Z" fill="#296BEF" style="fill:#296BEF;fill:color(display-p3 0.1608 0.4196 0.9373);fill-opacity:1;"/>
|
|
5
|
+
<path d="M9.50727 24.448H10.5333V31H9.57927V30.505C9.25527 30.919 8.78727 31.126 8.17527 31.126C7.48227 31.126 6.94227 30.883 6.55527 30.397C6.19527 29.947 6.01527 29.362 6.01527 28.651C6.01527 27.967 6.18627 27.4 6.54627 26.95C6.92427 26.464 7.45527 26.221 8.12127 26.221C8.66127 26.221 9.12027 26.473 9.50727 26.986V24.448ZM8.36427 27.049C7.89627 27.049 7.56327 27.202 7.34727 27.508C7.15827 27.769 7.06827 28.147 7.06827 28.651C7.06827 29.155 7.14927 29.542 7.32927 29.812C7.53627 30.136 7.86927 30.298 8.32827 30.298C8.72427 30.298 9.03927 30.136 9.25527 29.821C9.44427 29.533 9.54327 29.155 9.54327 28.705V28.633C9.54327 28.138 9.41727 27.742 9.18327 27.454C8.96727 27.184 8.68827 27.049 8.36427 27.049ZM13.7693 26.221C14.4713 26.221 15.0383 26.446 15.4703 26.914C15.8933 27.373 16.1093 27.958 16.1093 28.678C16.1093 29.389 15.8933 29.974 15.4793 30.424C15.0473 30.892 14.4713 31.126 13.7693 31.126C13.0583 31.126 12.4913 30.892 12.0593 30.424C11.6363 29.974 11.4293 29.389 11.4293 28.678C11.4293 27.958 11.6363 27.373 12.0683 26.914C12.4913 26.446 13.0583 26.221 13.7693 26.221ZM13.7693 27.058C13.3373 27.058 13.0133 27.22 12.7793 27.562C12.5813 27.85 12.4823 28.228 12.4823 28.678C12.4823 29.128 12.5813 29.497 12.7793 29.785C13.0133 30.118 13.3373 30.289 13.7693 30.289C14.1923 30.289 14.5253 30.118 14.7593 29.785C14.9573 29.488 15.0653 29.119 15.0653 28.678C15.0653 28.228 14.9573 27.85 14.7593 27.562C14.5253 27.22 14.1923 27.058 13.7693 27.058ZM19.0938 26.221C19.6968 26.221 20.1738 26.356 20.5338 26.626C20.9028 26.914 21.1368 27.346 21.2268 27.931H20.2098C20.1468 27.634 20.0208 27.418 19.8408 27.274C19.6518 27.13 19.3998 27.058 19.0938 27.058C18.7158 27.058 18.4188 27.193 18.2028 27.481C17.9868 27.76 17.8788 28.156 17.8788 28.66C17.8788 29.173 17.9778 29.578 18.1938 29.866C18.3918 30.145 18.6888 30.289 19.0848 30.289C19.7688 30.289 20.1468 29.947 20.2278 29.272H21.2448C21.1368 29.902 20.8938 30.37 20.5248 30.676C20.1648 30.973 19.6788 31.126 19.0758 31.126C18.3558 31.126 17.7978 30.892 17.4018 30.424C17.0148 29.974 16.8258 29.389 16.8258 28.669C16.8258 27.967 17.0148 27.391 17.3928 26.95C17.7978 26.464 18.3648 26.221 19.0938 26.221ZM21.7627 26.347H22.9597L23.9317 27.769L24.8947 26.347H26.0917L24.4897 28.525L26.2987 31H25.0927L23.9317 29.281L22.7617 31H21.5557L23.3647 28.525L21.7627 26.347Z" fill="#296BEF" style="fill:#296BEF;fill:color(display-p3 0.1608 0.4196 0.9373);fill-opacity:1;"/>
|
|
6
|
+
<g filter="url(#filter0_d_8761_165187)">
|
|
7
|
+
<path d="M20 3L32 15H26C22.6863 15 20 12.3137 20 9V3Z" fill="#E4ECFC" style="fill:#E4ECFC;fill:color(display-p3 0.8941 0.9261 0.9879);fill-opacity:1;"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<filter id="filter0_d_8761_165187" x="14" y="0" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
11
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
12
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
13
|
+
<feOffset dy="3"/>
|
|
14
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
15
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
16
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
17
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8761_165187"/>
|
|
18
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8761_165187" result="shape"/>
|
|
19
|
+
</filter>
|
|
20
|
+
<linearGradient id="paint0_linear_8761_165187" x1="0" y1="3" x2="31" y2="40" gradientUnits="userSpaceOnUse">
|
|
21
|
+
<stop stop-color="#296BEF" stop-opacity="0.2" style="stop-color:#296BEF;stop-color:color(display-p3 0.1608 0.4196 0.9373);stop-opacity:0.2;"/>
|
|
22
|
+
<stop offset="1" stop-color="#296BEF" stop-opacity="0.3" style="stop-color:#296BEF;stop-color:color(display-p3 0.1608 0.4196 0.9373);stop-opacity:0.3;"/>
|
|
23
|
+
</linearGradient>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg width="38" height="39" viewBox="0 0 38 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="white"/>
|
|
3
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="url(#paint0_linear_artifact_file_m)"/>
|
|
4
|
+
<path d="M12.1947 12.1467C11.6096 11.8656 11.1345 11.3904 10.8532 10.8053C10.8362 10.7699 10.8199 10.7341 10.8043 10.6978C10.7919 10.669 10.7799 10.64 10.7685 10.6107C10.7341 10.523 10.704 10.4333 10.6784 10.3416C10.6707 10.3141 10.6633 10.2862 10.6564 10.2582C10.6021 10.0387 10.5733 9.80928 10.5733 9.57328C10.5733 9.25328 10.32 9 10 9C9.68 9 9.42667 9.25328 9.42667 9.57328C9.42667 9.80928 9.39786 10.0387 9.34358 10.2582C9.33667 10.2862 9.32934 10.3141 9.32162 10.3416C9.29597 10.4333 9.26586 10.523 9.23154 10.6107C9.22006 10.64 9.20811 10.669 9.19571 10.6978C9.18013 10.7341 9.16382 10.7699 9.1468 10.8053C8.86554 11.3904 8.39045 11.8656 7.80526 12.1467C7.76986 12.1638 7.73403 12.1802 7.69784 12.1957C7.66902 12.2082 7.63994 12.22 7.61064 12.2315C7.52299 12.2659 7.43322 12.296 7.34162 12.3216C7.314 12.3293 7.28622 12.3366 7.25827 12.3435C7.03878 12.3979 6.80936 12.4267 6.57333 12.4267C6.25333 12.4267 6 12.68 6 13C6 13.32 6.25333 13.5733 6.57333 13.5733C6.80936 13.5733 7.03878 13.6021 7.25827 13.6565C7.28622 13.6634 7.314 13.6707 7.34162 13.6784C7.43322 13.704 7.52301 13.7341 7.61066 13.7685C7.63995 13.78 7.66902 13.7918 7.69784 13.8043C7.73403 13.8198 7.76986 13.8362 7.80526 13.8533C8.39045 14.1344 8.86554 14.6096 9.1468 15.1947C9.16382 15.2301 9.18013 15.2659 9.19571 15.3022C9.20811 15.331 9.22006 15.36 9.23154 15.3893C9.26586 15.477 9.29597 15.5667 9.32162 15.6584C9.32934 15.6859 9.33667 15.7138 9.34358 15.7418C9.39786 15.9613 9.42667 16.1907 9.42667 16.4267C9.42667 16.7467 9.68 17 10 17C10.32 17 10.5733 16.7467 10.5733 16.4267C10.5733 16.1907 10.6021 15.9613 10.6564 15.7418C10.6633 15.7138 10.6707 15.6859 10.6784 15.6584C10.704 15.5667 10.7341 15.477 10.7685 15.3893C10.7799 15.36 10.7919 15.331 10.8043 15.3022C10.8199 15.2659 10.8362 15.2301 10.8532 15.1947C11.1345 14.6096 11.6096 14.1344 12.1947 13.8533C12.2301 13.8362 12.266 13.8198 12.3022 13.8043C12.331 13.7918 12.3601 13.78 12.3894 13.7685C12.477 13.7341 12.5668 13.704 12.6584 13.6784C12.686 13.6707 12.7138 13.6634 12.7417 13.6565C12.9612 13.6021 13.1906 13.5733 13.4267 13.5733C13.7467 13.5733 14 13.32 14 13C14 12.68 13.7467 12.4267 13.4267 12.4267C13.1906 12.4267 12.9612 12.3979 12.7417 12.3435C12.7138 12.3366 12.686 12.3293 12.6584 12.3216C12.5668 12.296 12.477 12.2659 12.3893 12.2315C12.36 12.22 12.331 12.2082 12.3022 12.1957C12.266 12.1802 12.2301 12.1638 12.1947 12.1467Z" fill="#A3A9B6"/>
|
|
5
|
+
<path d="M10.126 31.000L10.126 27.434L9.405 27.434L9.405 26.543L10.126 26.543L10.126 26.128Q10.126 25.683 10.284 25.387Q10.442 25.092 10.781 24.944Q11.120 24.796 11.656 24.796Q11.838 24.796 11.987 24.808Q12.136 24.820 12.264 24.841L12.264 25.628Q12.209 25.618 12.118 25.612Q12.027 25.606 11.911 25.606Q11.569 25.606 11.427 25.761Q11.284 25.915 11.284 26.209L11.284 26.543L12.227 26.543L12.227 27.434L11.308 27.434L11.308 31.000ZM13.369 31.000L13.369 26.543L14.551 26.543L14.551 31.000ZM13.962 25.859Q13.690 25.859 13.493 25.666Q13.296 25.474 13.296 25.203Q13.296 24.928 13.493 24.736Q13.690 24.545 13.962 24.545Q14.237 24.545 14.432 24.736Q14.628 24.928 14.628 25.203Q14.628 25.474 14.432 25.666Q14.237 25.859 13.962 25.859ZM15.976 31.000L15.976 24.839L17.158 24.839L17.158 31.000ZM20.534 31.095Q19.856 31.095 19.368 30.814Q18.880 30.532 18.617 30.013Q18.354 29.494 18.354 28.780L18.354 28.776Q18.354 28.065 18.616 27.543Q18.878 27.021 19.357 26.734Q19.836 26.448 20.485 26.448Q21.135 26.448 21.609 26.726Q22.082 27.004 22.338 27.507Q22.595 28.010 22.595 28.686L22.595 29.053L18.945 29.053L18.945 28.312L22.026 28.312L21.471 29.012L21.471 28.541Q21.471 28.140 21.349 27.872Q21.226 27.604 21.010 27.468Q20.793 27.332 20.506 27.332Q20.220 27.332 20.000 27.472Q19.779 27.612 19.652 27.882Q19.526 28.152 19.526 28.541L19.526 29.016Q19.526 29.393 19.650 29.660Q19.775 29.927 20.007 30.069Q20.238 30.211 20.558 30.211Q20.817 30.211 21.000 30.135Q21.182 30.059 21.293 29.955Q21.404 29.850 21.445 29.767L21.457 29.743L22.558 29.741L22.548 29.784Q22.497 29.992 22.359 30.221Q22.220 30.449 21.979 30.648Q21.738 30.846 21.380 30.971Q21.022 31.095 20.534 31.095Z" fill="#A3A9B6"/>
|
|
6
|
+
<g filter="url(#filter0_d_artifact_file_m)">
|
|
7
|
+
<path d="M20 3L32 15H26C22.6863 15 20 12.3137 20 9V3Z" fill="#E8EAEF"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<filter id="filter0_d_artifact_file_m" x="14" y="0" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
11
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
12
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
13
|
+
<feOffset dy="3"/>
|
|
14
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
15
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
16
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
17
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_artifact_file_m"/>
|
|
18
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_artifact_file_m" result="shape"/>
|
|
19
|
+
</filter>
|
|
20
|
+
<linearGradient id="paint0_linear_artifact_file_m" x1="0" y1="3" x2="31" y2="40" gradientUnits="userSpaceOnUse">
|
|
21
|
+
<stop stop-color="#A3A9B6" stop-opacity="0.2"/>
|
|
22
|
+
<stop offset="1" stop-color="#A3A9B6" stop-opacity="0.3"/>
|
|
23
|
+
</linearGradient>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg width="38" height="39" viewBox="0 0 38 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="white" style="fill:white;fill-opacity:1;"/>
|
|
3
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="url(#paint0_linear_8761_165190)"/>
|
|
4
|
+
<path d="M12.1947 12.1467C11.6096 11.8656 11.1345 11.3904 10.8532 10.8053C10.8362 10.7699 10.8199 10.7341 10.8043 10.6978C10.7919 10.669 10.7799 10.64 10.7685 10.6107C10.7341 10.523 10.704 10.4333 10.6784 10.3416C10.6707 10.3141 10.6633 10.2862 10.6564 10.2582C10.6021 10.0387 10.5733 9.80928 10.5733 9.57328C10.5733 9.25328 10.32 9 10 9C9.68 9 9.42667 9.25328 9.42667 9.57328C9.42667 9.80928 9.39786 10.0387 9.34358 10.2582C9.33667 10.2862 9.32934 10.3141 9.32162 10.3416C9.29597 10.4333 9.26586 10.523 9.23154 10.6107C9.22006 10.64 9.20811 10.669 9.19571 10.6978C9.18013 10.7341 9.16382 10.7699 9.1468 10.8053C8.86554 11.3904 8.39045 11.8656 7.80526 12.1467C7.76986 12.1638 7.73403 12.1802 7.69784 12.1957C7.66902 12.2082 7.63994 12.22 7.61064 12.2315C7.52299 12.2659 7.43322 12.296 7.34162 12.3216C7.314 12.3293 7.28622 12.3366 7.25827 12.3435C7.03878 12.3979 6.80936 12.4267 6.57333 12.4267C6.25333 12.4267 6 12.68 6 13C6 13.32 6.25333 13.5733 6.57333 13.5733C6.80936 13.5733 7.03878 13.6021 7.25827 13.6565C7.28622 13.6634 7.314 13.6707 7.34162 13.6784C7.43322 13.704 7.52301 13.7341 7.61066 13.7685C7.63995 13.78 7.66902 13.7918 7.69784 13.8043C7.73403 13.8198 7.76986 13.8362 7.80526 13.8533C8.39045 14.1344 8.86554 14.6096 9.1468 15.1947C9.16382 15.2301 9.18013 15.2659 9.19571 15.3022C9.20811 15.331 9.22006 15.36 9.23154 15.3893C9.26586 15.477 9.29597 15.5667 9.32162 15.6584C9.32934 15.6859 9.33667 15.7138 9.34358 15.7418C9.39786 15.9613 9.42667 16.1907 9.42667 16.4267C9.42667 16.7467 9.68 17 10 17C10.32 17 10.5733 16.7467 10.5733 16.4267C10.5733 16.1907 10.6021 15.9613 10.6564 15.7418C10.6633 15.7138 10.6707 15.6859 10.6784 15.6584C10.704 15.5667 10.7341 15.477 10.7685 15.3893C10.7799 15.36 10.7919 15.331 10.8043 15.3022C10.8199 15.2659 10.8362 15.2301 10.8532 15.1947C11.1345 14.6096 11.6096 14.1344 12.1947 13.8533C12.2301 13.8362 12.266 13.8198 12.3022 13.8043C12.331 13.7918 12.3601 13.78 12.3894 13.7685C12.477 13.7341 12.5668 13.704 12.6584 13.6784C12.686 13.6707 12.7138 13.6634 12.7417 13.6565C12.9612 13.6021 13.1906 13.5733 13.4267 13.5733C13.7467 13.5733 14 13.32 14 13C14 12.68 13.7467 12.4267 13.4267 12.4267C13.1906 12.4267 12.9612 12.3979 12.7417 12.3435C12.7138 12.3366 12.686 12.3293 12.6584 12.3216C12.5668 12.296 12.477 12.2659 12.3893 12.2315C12.36 12.22 12.331 12.2082 12.3022 12.1957C12.266 12.1802 12.2301 12.1638 12.1947 12.1467Z" fill="#F06617" style="fill:#F06617;fill:color(display-p3 0.9412 0.4000 0.0902);fill-opacity:1;"/>
|
|
5
|
+
<path d="M7.19283 24.448H8.21883V26.968C8.38983 26.707 8.60583 26.518 8.85783 26.392C9.08283 26.275 9.34383 26.221 9.64083 26.221C10.2078 26.221 10.6308 26.383 10.9098 26.716C11.1708 27.031 11.3058 27.499 11.3058 28.12V31H10.2798V28.3C10.2798 27.904 10.1988 27.598 10.0458 27.391C9.86583 27.166 9.60483 27.058 9.25383 27.058C8.92983 27.058 8.67783 27.184 8.49783 27.436C8.30883 27.688 8.21883 28.003 8.21883 28.399V31H7.19283V24.448ZM13.8452 24.844V26.347H14.8802V27.193H13.8452V29.821C13.8452 29.929 13.8632 30.01 13.9172 30.073C13.9712 30.127 14.0432 30.154 14.1512 30.154H14.7632V31H13.9802C13.5752 31 13.2782 30.892 13.0892 30.676C12.9092 30.478 12.8192 30.199 12.8192 29.821V27.193H11.9822V26.347H12.8192V25.267L13.8452 24.844ZM17.9339 26.221C18.6179 26.221 19.1039 26.473 19.4009 26.977C19.6169 26.689 19.8419 26.491 20.0759 26.383C20.2829 26.275 20.5439 26.221 20.8589 26.221C21.3359 26.221 21.7319 26.374 22.0559 26.698C22.3619 27.022 22.5239 27.436 22.5239 27.949V31H21.4979V28.129C21.4979 27.76 21.4169 27.49 21.2639 27.328C21.1019 27.157 20.8499 27.076 20.4899 27.076C20.2379 27.076 20.0309 27.166 19.8599 27.364C19.6799 27.553 19.5989 27.814 19.5989 28.156V31H18.5729V28.138C18.5729 27.427 18.2669 27.076 17.6549 27.076C17.3579 27.076 17.1239 27.184 16.9439 27.418C16.7639 27.634 16.6739 27.904 16.6739 28.21V31H15.6479V26.347H16.6739V26.824C17.0609 26.419 17.4839 26.221 17.9339 26.221ZM23.692 24.448H24.718V31H23.692V24.448Z" fill="#F06617" style="fill:#F06617;fill:color(display-p3 0.9412 0.4000 0.0902);fill-opacity:1;"/>
|
|
6
|
+
<g filter="url(#filter0_d_8761_165190)">
|
|
7
|
+
<path d="M20 3L32 15H26C22.6863 15 20 12.3137 20 9V3Z" fill="#FBE9DE" style="fill:#FBE9DE;fill:color(display-p3 0.9844 0.9148 0.8720);fill-opacity:1;"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<filter id="filter0_d_8761_165190" x="14" y="0" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
11
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
12
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
13
|
+
<feOffset dy="3"/>
|
|
14
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
15
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
16
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
17
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8761_165190"/>
|
|
18
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8761_165190" result="shape"/>
|
|
19
|
+
</filter>
|
|
20
|
+
<linearGradient id="paint0_linear_8761_165190" x1="0" y1="3" x2="31" y2="40" gradientUnits="userSpaceOnUse">
|
|
21
|
+
<stop stop-color="#F06617" stop-opacity="0.2" style="stop-color:#F06617;stop-color:color(display-p3 0.9412 0.4000 0.0902);stop-opacity:0.2;"/>
|
|
22
|
+
<stop offset="1" stop-color="#F06617" stop-opacity="0.3" style="stop-color:#F06617;stop-color:color(display-p3 0.9412 0.4000 0.0902);stop-opacity:0.3;"/>
|
|
23
|
+
</linearGradient>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg width="38" height="39" viewBox="0 0 38 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="white" style="fill:white;fill-opacity:1;"/>
|
|
3
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="url(#paint0_linear_8761_165188)"/>
|
|
4
|
+
<path d="M12.1947 12.1467C11.6096 11.8656 11.1345 11.3904 10.8532 10.8053C10.8362 10.7699 10.8199 10.7341 10.8043 10.6978C10.7919 10.669 10.7799 10.64 10.7685 10.6107C10.7341 10.523 10.704 10.4333 10.6784 10.3416C10.6707 10.3141 10.6633 10.2862 10.6564 10.2582C10.6021 10.0387 10.5733 9.80928 10.5733 9.57328C10.5733 9.25328 10.32 9 10 9C9.68 9 9.42667 9.25328 9.42667 9.57328C9.42667 9.80928 9.39786 10.0387 9.34358 10.2582C9.33667 10.2862 9.32934 10.3141 9.32162 10.3416C9.29597 10.4333 9.26586 10.523 9.23154 10.6107C9.22006 10.64 9.20811 10.669 9.19571 10.6978C9.18013 10.7341 9.16382 10.7699 9.1468 10.8053C8.86554 11.3904 8.39045 11.8656 7.80526 12.1467C7.76986 12.1638 7.73403 12.1802 7.69784 12.1957C7.66902 12.2082 7.63994 12.22 7.61064 12.2315C7.52299 12.2659 7.43322 12.296 7.34162 12.3216C7.314 12.3293 7.28622 12.3366 7.25827 12.3435C7.03878 12.3979 6.80936 12.4267 6.57333 12.4267C6.25333 12.4267 6 12.68 6 13C6 13.32 6.25333 13.5733 6.57333 13.5733C6.80936 13.5733 7.03878 13.6021 7.25827 13.6565C7.28622 13.6634 7.314 13.6707 7.34162 13.6784C7.43322 13.704 7.52301 13.7341 7.61066 13.7685C7.63995 13.78 7.66902 13.7918 7.69784 13.8043C7.73403 13.8198 7.76986 13.8362 7.80526 13.8533C8.39045 14.1344 8.86554 14.6096 9.1468 15.1947C9.16382 15.2301 9.18013 15.2659 9.19571 15.3022C9.20811 15.331 9.22006 15.36 9.23154 15.3893C9.26586 15.477 9.29597 15.5667 9.32162 15.6584C9.32934 15.6859 9.33667 15.7138 9.34358 15.7418C9.39786 15.9613 9.42667 16.1907 9.42667 16.4267C9.42667 16.7467 9.68 17 10 17C10.32 17 10.5733 16.7467 10.5733 16.4267C10.5733 16.1907 10.6021 15.9613 10.6564 15.7418C10.6633 15.7138 10.6707 15.6859 10.6784 15.6584C10.704 15.5667 10.7341 15.477 10.7685 15.3893C10.7799 15.36 10.7919 15.331 10.8043 15.3022C10.8199 15.2659 10.8362 15.2301 10.8532 15.1947C11.1345 14.6096 11.6096 14.1344 12.1947 13.8533C12.2301 13.8362 12.266 13.8198 12.3022 13.8043C12.331 13.7918 12.3601 13.78 12.3894 13.7685C12.477 13.7341 12.5668 13.704 12.6584 13.6784C12.686 13.6707 12.7138 13.6634 12.7417 13.6565C12.9612 13.6021 13.1906 13.5733 13.4267 13.5733C13.7467 13.5733 14 13.32 14 13C14 12.68 13.7467 12.4267 13.4267 12.4267C13.1906 12.4267 12.9612 12.3979 12.7417 12.3435C12.7138 12.3366 12.686 12.3293 12.6584 12.3216C12.5668 12.296 12.477 12.2659 12.3893 12.2315C12.36 12.22 12.331 12.2082 12.3022 12.1957C12.266 12.1802 12.2301 12.1638 12.1947 12.1467Z" fill="#848B98" style="fill:#848B98;fill:color(display-p3 0.5176 0.5451 0.5961);fill-opacity:1;"/>
|
|
5
|
+
<path d="M12.1419 26.221C12.8259 26.221 13.3119 26.473 13.6089 26.977C13.8249 26.689 14.0499 26.491 14.2839 26.383C14.4909 26.275 14.7519 26.221 15.0669 26.221C15.5439 26.221 15.9399 26.374 16.2639 26.698C16.5699 27.022 16.7319 27.436 16.7319 27.949V31H15.7059V28.129C15.7059 27.76 15.6249 27.49 15.4719 27.328C15.3099 27.157 15.0579 27.076 14.6979 27.076C14.4459 27.076 14.2389 27.166 14.0679 27.364C13.8879 27.553 13.8069 27.814 13.8069 28.156V31H12.7809V28.138C12.7809 27.427 12.4749 27.076 11.8629 27.076C11.5659 27.076 11.3319 27.184 11.1519 27.418C10.9719 27.634 10.8819 27.904 10.8819 28.21V31H9.85592V26.347H10.8819V26.824C11.2689 26.419 11.6919 26.221 12.1419 26.221ZM21.122 24.448H22.148V31H21.194V30.505C20.87 30.919 20.402 31.126 19.79 31.126C19.097 31.126 18.557 30.883 18.17 30.397C17.81 29.947 17.63 29.362 17.63 28.651C17.63 27.967 17.801 27.4 18.161 26.95C18.539 26.464 19.07 26.221 19.736 26.221C20.276 26.221 20.735 26.473 21.122 26.986V24.448ZM19.979 27.049C19.511 27.049 19.178 27.202 18.962 27.508C18.773 27.769 18.683 28.147 18.683 28.651C18.683 29.155 18.764 29.542 18.944 29.812C19.151 30.136 19.484 30.298 19.943 30.298C20.339 30.298 20.654 30.136 20.87 29.821C21.059 29.533 21.158 29.155 21.158 28.705V28.633C21.158 28.138 21.032 27.742 20.798 27.454C20.582 27.184 20.303 27.049 19.979 27.049Z" fill="#848B98" style="fill:#848B98;fill:color(display-p3 0.5176 0.5451 0.5961);fill-opacity:1;"/>
|
|
6
|
+
<g filter="url(#filter0_d_8761_165188)">
|
|
7
|
+
<path d="M20 3L32 15H26C22.6863 15 20 12.3137 20 9V3Z" fill="#E5E7EB" style="fill:#E5E7EB;fill:color(display-p3 0.9464 0.9501 0.9538);fill-opacity:1;"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<filter id="filter0_d_8761_165188" x="14" y="0" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
11
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
12
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
13
|
+
<feOffset dy="3"/>
|
|
14
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
15
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
16
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
17
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8761_165188"/>
|
|
18
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8761_165188" result="shape"/>
|
|
19
|
+
</filter>
|
|
20
|
+
<linearGradient id="paint0_linear_8761_165188" x1="0" y1="3" x2="31" y2="40" gradientUnits="userSpaceOnUse">
|
|
21
|
+
<stop stop-color="#848B98" stop-opacity="0.2" style="stop-color:#848B98;stop-color:color(display-p3 0.5176 0.5451 0.5961);stop-opacity:0.2;"/>
|
|
22
|
+
<stop offset="1" stop-color="#848B98" stop-opacity="0.3" style="stop-color:#848B98;stop-color:color(display-p3 0.5176 0.5451 0.5961);stop-opacity:0.3;"/>
|
|
23
|
+
</linearGradient>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg width="38" height="39" viewBox="0 0 38 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="white" style="fill:white;fill-opacity:1;"/>
|
|
3
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="url(#paint0_linear_8761_165192)"/>
|
|
4
|
+
<path d="M12.1947 12.1467C11.6096 11.8656 11.1345 11.3904 10.8532 10.8053C10.8362 10.7699 10.8199 10.7341 10.8043 10.6978C10.7919 10.669 10.7799 10.64 10.7685 10.6107C10.7341 10.523 10.704 10.4333 10.6784 10.3416C10.6707 10.3141 10.6633 10.2862 10.6564 10.2582C10.6021 10.0387 10.5733 9.80928 10.5733 9.57328C10.5733 9.25328 10.32 9 10 9C9.68 9 9.42667 9.25328 9.42667 9.57328C9.42667 9.80928 9.39786 10.0387 9.34358 10.2582C9.33667 10.2862 9.32934 10.3141 9.32162 10.3416C9.29597 10.4333 9.26586 10.523 9.23154 10.6107C9.22006 10.64 9.20811 10.669 9.19571 10.6978C9.18013 10.7341 9.16382 10.7699 9.1468 10.8053C8.86554 11.3904 8.39045 11.8656 7.80526 12.1467C7.76986 12.1638 7.73403 12.1802 7.69784 12.1957C7.66902 12.2082 7.63994 12.22 7.61064 12.2315C7.52299 12.2659 7.43322 12.296 7.34162 12.3216C7.314 12.3293 7.28622 12.3366 7.25827 12.3435C7.03878 12.3979 6.80936 12.4267 6.57333 12.4267C6.25333 12.4267 6 12.68 6 13C6 13.32 6.25333 13.5733 6.57333 13.5733C6.80936 13.5733 7.03878 13.6021 7.25827 13.6565C7.28622 13.6634 7.314 13.6707 7.34162 13.6784C7.43322 13.704 7.52301 13.7341 7.61066 13.7685C7.63995 13.78 7.66902 13.7918 7.69784 13.8043C7.73403 13.8198 7.76986 13.8362 7.80526 13.8533C8.39045 14.1344 8.86554 14.6096 9.1468 15.1947C9.16382 15.2301 9.18013 15.2659 9.19571 15.3022C9.20811 15.331 9.22006 15.36 9.23154 15.3893C9.26586 15.477 9.29597 15.5667 9.32162 15.6584C9.32934 15.6859 9.33667 15.7138 9.34358 15.7418C9.39786 15.9613 9.42667 16.1907 9.42667 16.4267C9.42667 16.7467 9.68 17 10 17C10.32 17 10.5733 16.7467 10.5733 16.4267C10.5733 16.1907 10.6021 15.9613 10.6564 15.7418C10.6633 15.7138 10.6707 15.6859 10.6784 15.6584C10.704 15.5667 10.7341 15.477 10.7685 15.3893C10.7799 15.36 10.7919 15.331 10.8043 15.3022C10.8199 15.2659 10.8362 15.2301 10.8532 15.1947C11.1345 14.6096 11.6096 14.1344 12.1947 13.8533C12.2301 13.8362 12.266 13.8198 12.3022 13.8043C12.331 13.7918 12.3601 13.78 12.3894 13.7685C12.477 13.7341 12.5668 13.704 12.6584 13.6784C12.686 13.6707 12.7138 13.6634 12.7417 13.6565C12.9612 13.6021 13.1906 13.5733 13.4267 13.5733C13.7467 13.5733 14 13.32 14 13C14 12.68 13.7467 12.4267 13.4267 12.4267C13.1906 12.4267 12.9612 12.3979 12.7417 12.3435C12.7138 12.3366 12.686 12.3293 12.6584 12.3216C12.5668 12.296 12.477 12.2659 12.3893 12.2315C12.36 12.22 12.331 12.2082 12.3022 12.1957C12.266 12.1802 12.2301 12.1638 12.1947 12.1467Z" fill="#E63D2E" style="fill:#E63D2E;fill:color(display-p3 0.9020 0.2392 0.1804);fill-opacity:1;"/>
|
|
5
|
+
<path d="M11.7833 26.221C12.4673 26.221 13.0073 26.464 13.4033 26.95C13.7633 27.4 13.9433 27.976 13.9433 28.696C13.9433 29.38 13.7633 29.947 13.4123 30.397C13.0343 30.883 12.5033 31.126 11.8373 31.126C11.2973 31.126 10.8293 30.865 10.4513 30.361V32.782H9.42525V26.347H10.3793V26.842C10.7033 26.428 11.1713 26.221 11.7833 26.221ZM11.6303 27.049C11.2253 27.049 10.9193 27.202 10.7033 27.526C10.5053 27.805 10.4153 28.174 10.4153 28.642V28.714C10.4153 29.2 10.5323 29.596 10.7753 29.893C10.9913 30.163 11.2613 30.298 11.5943 30.298C12.0443 30.298 12.3863 30.145 12.6023 29.857C12.7913 29.587 12.8903 29.2 12.8903 28.696C12.8903 28.192 12.8003 27.805 12.6293 27.535C12.4133 27.211 12.0803 27.049 11.6303 27.049ZM18.1513 24.448H19.1773V31H18.2233V30.505C17.8993 30.919 17.4313 31.126 16.8193 31.126C16.1263 31.126 15.5863 30.883 15.1993 30.397C14.8393 29.947 14.6593 29.362 14.6593 28.651C14.6593 27.967 14.8303 27.4 15.1903 26.95C15.5683 26.464 16.0993 26.221 16.7653 26.221C17.3053 26.221 17.7643 26.473 18.1513 26.986V24.448ZM17.0083 27.049C16.5403 27.049 16.2073 27.202 15.9913 27.508C15.8023 27.769 15.7123 28.147 15.7123 28.651C15.7123 29.155 15.7933 29.542 15.9733 29.812C16.1803 30.136 16.5133 30.298 16.9723 30.298C17.3683 30.298 17.6833 30.136 17.8993 29.821C18.0883 29.533 18.1873 29.155 18.1873 28.705V28.633C18.1873 28.138 18.0613 27.742 17.8273 27.454C17.6113 27.184 17.3323 27.049 17.0083 27.049ZM22.0804 24.574H23.0704V25.438H22.2244C22.0894 25.438 21.9904 25.474 21.9184 25.546C21.8464 25.618 21.8194 25.726 21.8194 25.879V26.347H23.0074V27.184H21.8194V31H20.7934V27.184H19.7584V26.347H20.7934V25.852C20.7934 25.456 20.9014 25.141 21.1264 24.916C21.3424 24.682 21.6664 24.574 22.0804 24.574Z" fill="#E63D2E" style="fill:#E63D2E;fill:color(display-p3 0.9020 0.2392 0.1804);fill-opacity:1;"/>
|
|
6
|
+
<g filter="url(#filter0_d_8761_165192)">
|
|
7
|
+
<path d="M20 3L32 15H24C21.7909 15 20 13.2091 20 11V3Z" fill="#FADEDC" style="fill:#FADEDC;fill:color(display-p3 0.9813 0.8706 0.8608);fill-opacity:1;"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<filter id="filter0_d_8761_165192" x="14" y="0" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
11
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
12
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
13
|
+
<feOffset dy="3"/>
|
|
14
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
15
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
16
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
17
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8761_165192"/>
|
|
18
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8761_165192" result="shape"/>
|
|
19
|
+
</filter>
|
|
20
|
+
<linearGradient id="paint0_linear_8761_165192" x1="0" y1="3" x2="31" y2="40" gradientUnits="userSpaceOnUse">
|
|
21
|
+
<stop stop-color="#E63D2E" stop-opacity="0.2" style="stop-color:#E63D2E;stop-color:color(display-p3 0.9020 0.2392 0.1804);stop-opacity:0.2;"/>
|
|
22
|
+
<stop offset="1" stop-color="#E63D2E" stop-opacity="0.3" style="stop-color:#E63D2E;stop-color:color(display-p3 0.9020 0.2392 0.1804);stop-opacity:0.3;"/>
|
|
23
|
+
</linearGradient>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg width="38" height="39" viewBox="0 0 38 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="white" style="fill:white;fill-opacity:1;"/>
|
|
3
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="url(#paint0_linear_8761_165189)"/>
|
|
4
|
+
<path d="M12.1947 12.1467C11.6096 11.8656 11.1345 11.3904 10.8532 10.8053C10.8362 10.7699 10.8199 10.7341 10.8043 10.6978C10.7919 10.669 10.7799 10.64 10.7685 10.6107C10.7341 10.523 10.704 10.4333 10.6784 10.3416C10.6707 10.3141 10.6633 10.2862 10.6564 10.2582C10.6021 10.0387 10.5733 9.80928 10.5733 9.57328C10.5733 9.25328 10.32 9 10 9C9.68 9 9.42667 9.25328 9.42667 9.57328C9.42667 9.80928 9.39786 10.0387 9.34358 10.2582C9.33667 10.2862 9.32934 10.3141 9.32162 10.3416C9.29597 10.4333 9.26586 10.523 9.23154 10.6107C9.22006 10.64 9.20811 10.669 9.19571 10.6978C9.18013 10.7341 9.16382 10.7699 9.1468 10.8053C8.86554 11.3904 8.39045 11.8656 7.80526 12.1467C7.76986 12.1638 7.73403 12.1802 7.69784 12.1957C7.66902 12.2082 7.63994 12.22 7.61064 12.2315C7.52299 12.2659 7.43322 12.296 7.34162 12.3216C7.314 12.3293 7.28622 12.3366 7.25827 12.3435C7.03878 12.3979 6.80936 12.4267 6.57333 12.4267C6.25333 12.4267 6 12.68 6 13C6 13.32 6.25333 13.5733 6.57333 13.5733C6.80936 13.5733 7.03878 13.6021 7.25827 13.6565C7.28622 13.6634 7.314 13.6707 7.34162 13.6784C7.43322 13.704 7.52301 13.7341 7.61066 13.7685C7.63995 13.78 7.66902 13.7918 7.69784 13.8043C7.73403 13.8198 7.76986 13.8362 7.80526 13.8533C8.39045 14.1344 8.86554 14.6096 9.1468 15.1947C9.16382 15.2301 9.18013 15.2659 9.19571 15.3022C9.20811 15.331 9.22006 15.36 9.23154 15.3893C9.26586 15.477 9.29597 15.5667 9.32162 15.6584C9.32934 15.6859 9.33667 15.7138 9.34358 15.7418C9.39786 15.9613 9.42667 16.1907 9.42667 16.4267C9.42667 16.7467 9.68 17 10 17C10.32 17 10.5733 16.7467 10.5733 16.4267C10.5733 16.1907 10.6021 15.9613 10.6564 15.7418C10.6633 15.7138 10.6707 15.6859 10.6784 15.6584C10.704 15.5667 10.7341 15.477 10.7685 15.3893C10.7799 15.36 10.7919 15.331 10.8043 15.3022C10.8199 15.2659 10.8362 15.2301 10.8532 15.1947C11.1345 14.6096 11.6096 14.1344 12.1947 13.8533C12.2301 13.8362 12.266 13.8198 12.3022 13.8043C12.331 13.7918 12.3601 13.78 12.3894 13.7685C12.477 13.7341 12.5668 13.704 12.6584 13.6784C12.686 13.6707 12.7138 13.6634 12.7417 13.6565C12.9612 13.6021 13.1906 13.5733 13.4267 13.5733C13.7467 13.5733 14 13.32 14 13C14 12.68 13.7467 12.4267 13.4267 12.4267C13.1906 12.4267 12.9612 12.3979 12.7417 12.3435C12.7138 12.3366 12.686 12.3293 12.6584 12.3216C12.5668 12.296 12.477 12.2659 12.3893 12.2315C12.36 12.22 12.331 12.2082 12.3022 12.1957C12.266 12.1802 12.2301 12.1638 12.1947 12.1467Z" fill="#FA8E00" style="fill:#FA8E00;fill:color(display-p3 0.9804 0.5569 0.0000);fill-opacity:1;"/>
|
|
5
|
+
<path d="M9.43657 26.221C10.1206 26.221 10.6606 26.464 11.0566 26.95C11.4166 27.4 11.5966 27.976 11.5966 28.696C11.5966 29.38 11.4166 29.947 11.0656 30.397C10.6876 30.883 10.1566 31.126 9.49057 31.126C8.95057 31.126 8.48257 30.865 8.10457 30.361V32.782H7.07857V26.347H8.03257V26.842C8.35657 26.428 8.82457 26.221 9.43657 26.221ZM9.28357 27.049C8.87857 27.049 8.57257 27.202 8.35657 27.526C8.15857 27.805 8.06857 28.174 8.06857 28.642V28.714C8.06857 29.2 8.18557 29.596 8.42857 29.893C8.64457 30.163 8.91457 30.298 9.24757 30.298C9.69757 30.298 10.0396 30.145 10.2556 29.857C10.4446 29.587 10.5436 29.2 10.5436 28.696C10.5436 28.192 10.4536 27.805 10.2826 27.535C10.0666 27.211 9.73357 27.049 9.28357 27.049ZM14.8506 26.221C15.5346 26.221 16.0746 26.464 16.4706 26.95C16.8306 27.4 17.0106 27.976 17.0106 28.696C17.0106 29.38 16.8306 29.947 16.4796 30.397C16.1016 30.883 15.5706 31.126 14.9046 31.126C14.3646 31.126 13.8966 30.865 13.5186 30.361V32.782H12.4926V26.347H13.4466V26.842C13.7706 26.428 14.2386 26.221 14.8506 26.221ZM14.6976 27.049C14.2926 27.049 13.9866 27.202 13.7706 27.526C13.5726 27.805 13.4826 28.174 13.4826 28.642V28.714C13.4826 29.2 13.5996 29.596 13.8426 29.893C14.0586 30.163 14.3286 30.298 14.6616 30.298C15.1116 30.298 15.4536 30.145 15.6696 29.857C15.8586 29.587 15.9576 29.2 15.9576 28.696C15.9576 28.192 15.8676 27.805 15.6966 27.535C15.4806 27.211 15.1476 27.049 14.6976 27.049ZM19.3647 24.844V26.347H20.3997V27.193H19.3647V29.821C19.3647 29.929 19.3827 30.01 19.4367 30.073C19.4907 30.127 19.5627 30.154 19.6707 30.154H20.2827V31H19.4997C19.0947 31 18.7977 30.892 18.6087 30.676C18.4287 30.478 18.3387 30.199 18.3387 29.821V27.193H17.5017V26.347H18.3387V25.267L19.3647 24.844ZM20.8794 26.347H22.0764L23.0484 27.769L24.0114 26.347H25.2084L23.6064 28.525L25.4154 31H24.2094L23.0484 29.281L21.8784 31H20.6724L22.4814 28.525L20.8794 26.347Z" fill="#FA8E00" style="fill:#FA8E00;fill:color(display-p3 0.9804 0.5569 0.0000);fill-opacity:1;"/>
|
|
6
|
+
<g filter="url(#filter0_d_8761_165189)">
|
|
7
|
+
<path d="M20 3L32 15H26C22.6863 15 20 12.3137 20 9V3Z" fill="#FDEDD9" style="fill:#FDEDD9;fill:color(display-p3 0.9931 0.9293 0.8501);fill-opacity:1;"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<filter id="filter0_d_8761_165189" x="14" y="0" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
11
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
12
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
13
|
+
<feOffset dy="3"/>
|
|
14
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
15
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
16
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
17
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8761_165189"/>
|
|
18
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8761_165189" result="shape"/>
|
|
19
|
+
</filter>
|
|
20
|
+
<linearGradient id="paint0_linear_8761_165189" x1="0" y1="3" x2="31" y2="40" gradientUnits="userSpaceOnUse">
|
|
21
|
+
<stop stop-color="#FA8E00" stop-opacity="0.2" style="stop-color:#FA8E00;stop-color:color(display-p3 0.9804 0.5569 0.0000);stop-opacity:0.2;"/>
|
|
22
|
+
<stop offset="1" stop-color="#FA8E00" stop-opacity="0.3" style="stop-color:#FA8E00;stop-color:color(display-p3 0.9804 0.5569 0.0000);stop-opacity:0.3;"/>
|
|
23
|
+
</linearGradient>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg width="38" height="39" viewBox="0 0 38 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="white" style="fill:white;fill-opacity:1;"/>
|
|
3
|
+
<path d="M0 9C0 5.68629 2.68629 3 6 3H20L32 15V33C32 36.3137 29.3137 39 26 39H6C2.68629 39 0 36.3137 0 33V9Z" fill="url(#paint0_linear_8761_165191)"/>
|
|
4
|
+
<path d="M12.1947 12.1467C11.6096 11.8656 11.1345 11.3904 10.8532 10.8053C10.8362 10.7699 10.8199 10.7341 10.8043 10.6978C10.7919 10.669 10.7799 10.64 10.7685 10.6107C10.7341 10.523 10.704 10.4333 10.6784 10.3416C10.6707 10.3141 10.6633 10.2862 10.6564 10.2582C10.6021 10.0387 10.5733 9.80928 10.5733 9.57328C10.5733 9.25328 10.32 9 10 9C9.68 9 9.42667 9.25328 9.42667 9.57328C9.42667 9.80928 9.39786 10.0387 9.34358 10.2582C9.33667 10.2862 9.32934 10.3141 9.32162 10.3416C9.29597 10.4333 9.26586 10.523 9.23154 10.6107C9.22006 10.64 9.20811 10.669 9.19571 10.6978C9.18013 10.7341 9.16382 10.7699 9.1468 10.8053C8.86554 11.3904 8.39045 11.8656 7.80526 12.1467C7.76986 12.1638 7.73403 12.1802 7.69784 12.1957C7.66902 12.2082 7.63994 12.22 7.61064 12.2315C7.52299 12.2659 7.43322 12.296 7.34162 12.3216C7.314 12.3293 7.28622 12.3366 7.25827 12.3435C7.03878 12.3979 6.80936 12.4267 6.57333 12.4267C6.25333 12.4267 6 12.68 6 13C6 13.32 6.25333 13.5733 6.57333 13.5733C6.80936 13.5733 7.03878 13.6021 7.25827 13.6565C7.28622 13.6634 7.314 13.6707 7.34162 13.6784C7.43322 13.704 7.52301 13.7341 7.61066 13.7685C7.63995 13.78 7.66902 13.7918 7.69784 13.8043C7.73403 13.8198 7.76986 13.8362 7.80526 13.8533C8.39045 14.1344 8.86554 14.6096 9.1468 15.1947C9.16382 15.2301 9.18013 15.2659 9.19571 15.3022C9.20811 15.331 9.22006 15.36 9.23154 15.3893C9.26586 15.477 9.29597 15.5667 9.32162 15.6584C9.32934 15.6859 9.33667 15.7138 9.34358 15.7418C9.39786 15.9613 9.42667 16.1907 9.42667 16.4267C9.42667 16.7467 9.68 17 10 17C10.32 17 10.5733 16.7467 10.5733 16.4267C10.5733 16.1907 10.6021 15.9613 10.6564 15.7418C10.6633 15.7138 10.6707 15.6859 10.6784 15.6584C10.704 15.5667 10.7341 15.477 10.7685 15.3893C10.7799 15.36 10.7919 15.331 10.8043 15.3022C10.8199 15.2659 10.8362 15.2301 10.8532 15.1947C11.1345 14.6096 11.6096 14.1344 12.1947 13.8533C12.2301 13.8362 12.266 13.8198 12.3022 13.8043C12.331 13.7918 12.3601 13.78 12.3894 13.7685C12.477 13.7341 12.5668 13.704 12.6584 13.6784C12.686 13.6707 12.7138 13.6634 12.7417 13.6565C12.9612 13.6021 13.1906 13.5733 13.4267 13.5733C13.7467 13.5733 14 13.32 14 13C14 12.68 13.7467 12.4267 13.4267 12.4267C13.1906 12.4267 12.9612 12.3979 12.7417 12.3435C12.7138 12.3366 12.686 12.3293 12.6584 12.3216C12.5668 12.296 12.477 12.2659 12.3893 12.2315C12.36 12.22 12.331 12.2082 12.3022 12.1957C12.266 12.1802 12.2301 12.1638 12.1947 12.1467Z" fill="#07C160" style="fill:#07C160;fill:color(display-p3 0.0275 0.7569 0.3765);fill-opacity:1;"/>
|
|
5
|
+
<path d="M7.91118 26.347H9.10818L10.0802 27.769L11.0432 26.347H12.2402L10.6382 28.525L12.4472 31H11.2412L10.0802 29.281L8.91018 31H7.70418L9.51318 28.525L7.91118 26.347ZM13.1232 24.448H14.1492V31H13.1232V24.448ZM17.0733 26.221C18.2973 26.221 18.9723 26.707 19.0803 27.697H18.0813C18.0093 27.463 17.9013 27.292 17.7573 27.202C17.6043 27.103 17.3703 27.058 17.0553 27.058C16.7853 27.058 16.5783 27.094 16.4433 27.175C16.2813 27.256 16.2093 27.382 16.2093 27.562C16.2093 27.706 16.3263 27.841 16.5783 27.949C16.7313 28.012 17.0373 28.102 17.5053 28.219C18.0273 28.345 18.4233 28.489 18.6753 28.66C19.0443 28.894 19.2333 29.227 19.2333 29.641C19.2333 30.631 18.5313 31.126 17.1363 31.126C15.8403 31.126 15.1473 30.577 15.0483 29.488H16.0473C16.1013 29.785 16.2093 29.992 16.3623 30.118C16.5153 30.226 16.7583 30.289 17.1003 30.289C17.8203 30.289 18.1803 30.091 18.1803 29.713C18.1803 29.497 18.0453 29.326 17.7753 29.2C17.6313 29.128 17.3253 29.047 16.8573 28.939C16.3083 28.813 15.9213 28.678 15.6963 28.534C15.3363 28.309 15.1563 27.994 15.1563 27.589C15.1563 27.157 15.3273 26.824 15.6873 26.59C16.0383 26.338 16.4973 26.221 17.0733 26.221ZM19.7588 26.347H20.9558L21.9278 27.769L22.8908 26.347H24.0878L22.4858 28.525L24.2948 31H23.0888L21.9278 29.281L20.7578 31H19.5518L21.3608 28.525L19.7588 26.347Z" fill="#07C160" style="fill:#07C160;fill:color(display-p3 0.0275 0.7569 0.3765);fill-opacity:1;"/>
|
|
6
|
+
<g filter="url(#filter0_d_8761_165191)">
|
|
7
|
+
<path d="M20 3L32 15H26C22.6863 15 20 12.3137 20 9V3Z" fill="#E4F7ED" style="fill:#E4F7ED;fill:color(display-p3 0.8952 0.9671 0.9294);fill-opacity:1;"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<filter id="filter0_d_8761_165191" x="14" y="0" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
11
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
12
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
13
|
+
<feOffset dy="3"/>
|
|
14
|
+
<feGaussianBlur stdDeviation="3"/>
|
|
15
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
16
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/>
|
|
17
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8761_165191"/>
|
|
18
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8761_165191" result="shape"/>
|
|
19
|
+
</filter>
|
|
20
|
+
<linearGradient id="paint0_linear_8761_165191" x1="0" y1="3" x2="31" y2="40" gradientUnits="userSpaceOnUse">
|
|
21
|
+
<stop stop-color="#07C160" stop-opacity="0.2" style="stop-color:#07C160;stop-color:color(display-p3 0.0275 0.7569 0.3765);stop-opacity:0.2;"/>
|
|
22
|
+
<stop offset="1" stop-color="#07C160" stop-opacity="0.3" style="stop-color:#07C160;stop-color:color(display-p3 0.0275 0.7569 0.3765);stop-opacity:0.3;"/>
|
|
23
|
+
</linearGradient>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|