Pārlūkot izejas kodu

add SearchOutLinedIcon

visuddhinanda 2 gadi atpakaļ
vecāks
revīzija
a7bf15b722
1 mainītis faili ar 36 papildinājumiem un 0 dzēšanām
  1. 36 0
      dashboard/src/assets/icon/index.tsx

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

@@ -422,6 +422,38 @@ const AnthologyOutLined = () => (
   </svg>
   </svg>
 );
 );
 
 
+const SearchOutLined = () => (
+  <svg
+    viewBox="0 0 1024 1024"
+    version="1.1"
+    xmlns="http://www.w3.org/2000/svg"
+    p-id="7586"
+    width="1em"
+    height="1em"
+  >
+    <path
+      d="M1011.2 705.9456c0 62.2592-39.7824 112.5376-88.8832 112.5376H101.632c-49.0496 0-88.8832-50.2784-88.8832-112.5376V318.0544c0-62.2592 39.8336-112.5376 88.8832-112.5376h820.7872c49.152 0 88.8832 50.2784 88.8832 112.4352v387.9936h-0.1024z"
+      fill="currentColor"
+      p-id="7587"
+    ></path>
+    <path
+      d="M979.2512 313.1392c0-44.9536-36.5056-81.4592-81.4592-81.4592H126.3104c-44.9536 0-81.4592 36.5056-81.4592 81.4592v397.6704c0 45.056 36.5056 81.4592 81.4592 81.4592h771.4816a81.408 81.408 0 0 0 81.4592-81.4592V313.1392z"
+      fill="currentColor"
+      p-id="7588"
+    ></path>
+    <path
+      d="M720.9984 632.9856a157.9008 157.9008 0 0 1-145.1008-96.2048 156.8256 156.8256 0 0 1-12.3904-61.2864 157.9008 157.9008 0 0 1 96.2048-145.1008c19.4048-8.192 40.0384-12.3904 61.2864-12.3904a157.9008 157.9008 0 0 1 145.1008 96.2048c8.192 19.4048 12.3904 40.0384 12.3904 61.2864a157.1328 157.1328 0 0 1-96.2048 145.0496 155.9552 155.9552 0 0 1-61.2864 12.4416z m0-291.9936c-74.1888 0-134.5024 60.3648-134.5024 134.5024s60.3648 134.5024 134.5024 134.5024c74.1888 0 134.5024-60.3648 134.5024-134.5024S795.1872 340.992 720.9984 340.992zM907.1616 697.4464a35.584 35.584 0 0 1-25.2416-10.3936l-67.8912-65.8432 15.9744-16.4864 68.096 65.9968a12.8 12.8 0 0 0 9.1136 3.7376 12.7488 12.7488 0 0 0 12.8-12.8512 12.7488 12.7488 0 0 0-3.7376-9.0624l-0.1536-0.1536-65.8944-67.9424 16.4864-15.9744 65.8432 67.8912a35.6352 35.6352 0 0 1-25.3952 61.0816z"
+      fill="currentColor"
+      p-id="7589"
+    ></path>
+    <path
+      d="M652.7488 543.7952a96 96 0 0 1-28.3136-68.352c0-25.8048 10.0352-50.0736 28.3136-68.3008l16.2304 16.2304a73.728 73.728 0 0 0 0 104.192l-16.2304 16.2304z"
+      fill="currentColor"
+      p-id="7590"
+    ></path>
+  </svg>
+);
+
 export const DictIcon = (props: Partial<CustomIconComponentProps>) => (
 export const DictIcon = (props: Partial<CustomIconComponentProps>) => (
   <Icon component={DictSvg} {...props} />
   <Icon component={DictSvg} {...props} />
 );
 );
@@ -507,3 +539,7 @@ export const CourseOutLinedIcon = (
 export const AnthologyOutLinedIcon = (
 export const AnthologyOutLinedIcon = (
   props: Partial<CustomIconComponentProps>
   props: Partial<CustomIconComponentProps>
 ) => <Icon component={AnthologyOutLined} {...props} />;
 ) => <Icon component={AnthologyOutLined} {...props} />;
+
+export const SearchOutLinedIcon = (
+  props: Partial<CustomIconComponentProps>
+) => <Icon component={SearchOutLined} {...props} />;