|
|
@@ -607,6 +607,23 @@ const HandBookOutlined = () => (
|
|
|
></path>
|
|
|
</svg>
|
|
|
);
|
|
|
+
|
|
|
+const MergeSvg = () => (
|
|
|
+ <svg
|
|
|
+ viewBox="0 0 1024 1024"
|
|
|
+ version="1.1"
|
|
|
+ xmlns="http://www.w3.org/2000/svg"
|
|
|
+ p-id="6177"
|
|
|
+ width="1em"
|
|
|
+ height="1em"
|
|
|
+ >
|
|
|
+ <path
|
|
|
+ d="M832 938.666667a320.36 320.36 0 0 1-294.846667-195.433334q-2-4.706667-3.82-9.453333-1.833333 4.753333-3.82 9.453333A319.74 319.74 0 0 1 234.666667 938.666667a21.333333 21.333333 0 0 1 0-42.666667c152.92 0 277.333333-124.413333 277.333333-277.333333V158.166667L377.753333 292.42a21.333333 21.333333 0 0 1-30.173333-30.173333l170.666667-170.666667a21.333333 21.333333 0 0 1 30.173333 0l170.666667 170.666667a21.333333 21.333333 0 1 1-30.173334 30.173333L554.666667 158.166667V618.666667c0 152.92 124.413333 277.333333 277.333333 277.333333a21.333333 21.333333 0 0 1 0 42.666667z"
|
|
|
+ fill="currentColor"
|
|
|
+ p-id="6178"
|
|
|
+ ></path>
|
|
|
+ </svg>
|
|
|
+);
|
|
|
export const DictIcon = (props: Partial<CustomIconComponentProps>) => (
|
|
|
<Icon component={DictSvg} {...props} />
|
|
|
);
|
|
|
@@ -724,3 +741,7 @@ export const NotificationIcon = (props: Partial<CustomIconComponentProps>) => (
|
|
|
export const HandBookIcon = (props: Partial<CustomIconComponentProps>) => (
|
|
|
<Icon component={HandBookOutlined} {...props} />
|
|
|
);
|
|
|
+
|
|
|
+export const MergeIcon = (props: Partial<CustomIconComponentProps>) => (
|
|
|
+ <Icon component={MergeSvg} {...props} />
|
|
|
+);
|