Browse Source

add MergeSvg2

visuddhinanda 2 years ago
parent
commit
166bb9090e
1 changed files with 36 additions and 0 deletions
  1. 36 0
      dashboard/src/assets/icon/index.tsx

+ 36 - 0
dashboard/src/assets/icon/index.tsx

@@ -641,6 +641,38 @@ const VideoSvg = () => (
     ></path>
   </svg>
 );
+
+const MergeSvg2 = () => (
+  <svg
+    viewBox="0 0 1024 1024"
+    version="1.1"
+    xmlns="http://www.w3.org/2000/svg"
+    p-id="6789"
+    width="1em"
+    height="1em"
+  >
+    <path
+      d="M180.878 119.396c-38.864 0-70.446 31.584-70.446 70.412s31.582 70.446 70.446 70.446c38.794 0 70.376-31.618 70.376-70.446S219.674 119.396 180.878 119.396z"
+      fill="currentColor"
+      p-id="6790"
+    ></path>
+    <path
+      d="M180.81 775.618c-38.868 0-70.448 31.582-70.448 70.446 0 38.794 31.58 70.376 70.448 70.376 38.864 0 70.446-31.582 70.446-70.376C251.256 807.2 219.674 775.618 180.81 775.618z"
+      fill="currentColor"
+      p-id="6791"
+    ></path>
+    <path
+      d="M843.192 775.618c-38.794 0-70.376 31.582-70.376 70.446 0 38.794 31.582 70.376 70.376 70.376 38.866 0 70.448-31.582 70.448-70.376C913.638 807.2 882.056 775.618 843.192 775.618z"
+      fill="currentColor"
+      p-id="6792"
+    ></path>
+    <path
+      d="M898.232 677.578l0-272.72c0-148.28-120.656-268.902-268.902-268.902l-142.924 0 59.942-59.908L470.298 0l-124.366 124.298c-26.122-65.72-90.126-112.464-165.054-112.464-98.178 0-178.008 79.832-178.008 177.972 0 81.792 55.742 150.136 131.022 170.9l0 314.352C58.542 695.786 2.8 764.274 2.8 846.062 2.8 944.17 82.63 1024 180.81 1024c98.176 0 178.006-79.83 178.006-177.938 0-76.75-49.088-141.734-117.364-166.664L241.452 356.47c47.198-17.226 85.222-53.466 104.128-99.892l126.048 126.046 76.046-76.048-63.094-63.06 144.746 0c88.934 0 161.342 72.374 161.342 161.34l0 272.02c-72.338 22.546-125.418 89.424-125.418 169.184 0 98.108 79.83 177.938 177.938 177.938 98.178 0 178.008-79.83 178.008-177.938C1021.2 767.212 969.38 700.968 898.232 677.578zM180.81 916.44c-38.868 0-70.448-31.582-70.448-70.376 0-38.864 31.58-70.446 70.448-70.446 38.864 0 70.446 31.582 70.446 70.446C251.256 884.858 219.674 916.44 180.81 916.44zM180.878 260.254c-38.864 0-70.446-31.618-70.446-70.446s31.582-70.412 70.446-70.412c38.794 0 70.376 31.584 70.376 70.412S219.674 260.254 180.878 260.254zM843.192 916.44c-38.794 0-70.376-31.582-70.376-70.376 0-38.864 31.582-70.446 70.376-70.446 38.866 0 70.448 31.582 70.448 70.446C913.638 884.858 882.056 916.44 843.192 916.44z"
+      fill="currentColor"
+      p-id="6793"
+    ></path>
+  </svg>
+);
 export const DictIcon = (props: Partial<CustomIconComponentProps>) => (
   <Icon component={DictSvg} {...props} />
 );
@@ -765,3 +797,7 @@ export const MergeIcon = (props: Partial<CustomIconComponentProps>) => (
 export const VideoIcon = (props: Partial<CustomIconComponentProps>) => (
   <Icon component={VideoSvg} {...props} />
 );
+
+export const MergeIcon2 = (props: Partial<CustomIconComponentProps>) => (
+  <Icon component={MergeSvg2} {...props} />
+);