Browse Source

add ThemeOutlined

visuddhinanda 2 years ago
parent
commit
73b0b5361c
1 changed files with 21 additions and 0 deletions
  1. 21 0
      dashboard/src/assets/icon/index.tsx

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

@@ -288,6 +288,23 @@ const JsonOutlined = () => (
   </svg>
 );
 
+const ThemeOutlined = () => (
+  <svg
+    viewBox="190 190 750 750"
+    version="1.1"
+    xmlns="http://www.w3.org/2000/svg"
+    p-id="1557"
+    width="1em"
+    height="1em"
+  >
+    <path
+      d="M512 853.333333c-55.466667 0-21.333333-38.4-85.333333-102.4-59.733333-64-256-25.6-256-238.933333 0-187.733333 153.6-341.333333 341.333333-341.333333s341.333333 153.6 341.333333 341.333333-153.6 341.333333-341.333333 341.333333z m256-341.333333c0-140.8-115.2-256-256-256s-256 115.2-256 256c0 68.266667 21.333333 89.6 81.066667 110.933333 4.266667 0 12.8 4.266667 21.333333 4.266667 4.266667 0 17.066667 4.266667 21.333333 8.533333 55.466667 17.066667 81.066667 29.866667 106.666667 55.466667 21.333333 21.333333 34.133333 42.666667 46.933333 64 0 4.266667 4.266667 8.533333 4.266667 12.8 128-12.8 230.4-123.733333 230.4-256z m-128-85.333333c-25.6 0-42.666667-17.066667-42.666667-42.666667s17.066667-42.666667 42.666667-42.666667 42.666667 17.066667 42.666667 42.666667-17.066667 42.666667-42.666667 42.666667z m-119.466667-55.466667c-25.6 0-42.666667-17.066667-42.666666-42.666667s17.066667-42.666667 42.666666-42.666666 42.666667 17.066667 42.666667 42.666666-17.066667 42.666667-42.666667 42.666667z m183.466667 162.133333c-25.6 0-42.666667-17.066667-42.666667-42.666666s17.066667-42.666667 42.666667-42.666667 42.666667 17.066667 42.666667 42.666667-17.066667 42.666667-42.666667 42.666666zM392.533333 413.866667c-25.6 0-42.666667-17.066667-42.666666-42.666667s17.066667-42.666667 42.666666-42.666667 42.666667 17.066667 42.666667 42.666667-17.066667 42.666667-42.666667 42.666667z m196.266667 298.666666c-34.133333 0-64-29.866667-64-64s29.866667-64 64-64 64 29.866667 64 64c-4.266667 34.133333-29.866667 64-64 64z"
+      fill="currentColor"
+      p-id="3496"
+    ></path>
+  </svg>
+);
+
 export const DictIcon = (props: Partial<CustomIconComponentProps>) => (
   <Icon component={DictSvg} {...props} />
 );
@@ -345,3 +362,7 @@ export const TermIcon2 = (props: Partial<CustomIconComponentProps>) => (
 export const JsonOutlinedIcon = (props: Partial<CustomIconComponentProps>) => (
   <Icon component={JsonOutlined} {...props} />
 );
+
+export const ThemeOutlinedIcon = (props: Partial<CustomIconComponentProps>) => (
+  <Icon component={ThemeOutlined} {...props} />
+);