fix: 优化ts提示

This commit is contained in:
lifan 2024-06-25 20:02:04 +08:00
parent a30e8c646f
commit 70ffe63766
115 changed files with 578 additions and 114 deletions

View File

@ -1,4 +1,7 @@
const Add = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Add = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Add = (props) => (
/>
</svg>
);
export default Add;

View File

@ -1,4 +1,7 @@
const Addvideo = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Addvideo = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Addvideo = (props) => (
/>
</svg>
);
export default Addvideo;

View File

@ -1,4 +1,7 @@
const Ai = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Ai = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Ai = (props) => (
/>
</svg>
);
export default Ai;

View File

@ -1,4 +1,7 @@
const Algorithmfilled = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Algorithmfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Algorithmfilled = (props) => (
/>
</svg>
);
export default Algorithmfilled;

View File

@ -1,4 +1,7 @@
const Analysis = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Analysis = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Analysis = (props) => (
/>
</svg>
);
export default Analysis;

View File

@ -1,4 +1,7 @@
const Analysissel = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Analysissel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="nonzero">
<path
@ -12,4 +15,5 @@ const Analysissel = (props) => (
</g>
</svg>
);
export default Analysissel;

View File

@ -1,4 +1,7 @@
const Arrowdown = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Arrowdown = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Arrowdown = (props) => (
/>
</svg>
);
export default Arrowdown;

View File

@ -1,4 +1,7 @@
const Arrowleft = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Arrowleft = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Arrowleft = (props) => (
/>
</svg>
);
export default Arrowleft;

View File

@ -1,4 +1,7 @@
const Arrowright = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Arrowright = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Arrowright = (props) => (
/>
</svg>
);
export default Arrowright;

View File

@ -1,4 +1,7 @@
const Arrowup = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Arrowup = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Arrowup = (props) => (
/>
</svg>
);
export default Arrowup;

View File

@ -1,4 +1,7 @@
const Attachment = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Attachment = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Attachment = (props) => (
/>
</svg>
);
export default Attachment;

View File

@ -1,4 +1,7 @@
const Back = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Back = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Back = (props) => (
/>
</svg>
);
export default Back;

View File

@ -1,4 +1,7 @@
const Bike = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Bike = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Bike = (props) => (
/>
</svg>
);
export default Bike;

View File

@ -1,4 +1,7 @@
const Bikefilled = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Bikefilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Bikefilled = (props) => (
/>
</svg>
);
export default Bikefilled;

View File

@ -1,4 +1,7 @@
const Bikesel = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Bikesel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
@ -10,4 +13,5 @@ const Bikesel = (props) => (
</g>
</svg>
);
export default Bikesel;

View File

@ -1,4 +1,7 @@
const Briefcase = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Briefcase = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Briefcase = (props) => (
/>
</svg>
);
export default Briefcase;

View File

@ -1,4 +1,7 @@
const Browser = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Browser = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Browser = (props) => (
/>
</svg>
);
export default Browser;

View File

@ -1,4 +1,7 @@
const Calendar = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Calendar = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Calendar = (props) => (
/>
</svg>
);
export default Calendar;

View File

@ -1,4 +1,7 @@
const Camera = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Camera = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Camera = (props) => (
/>
</svg>
);
export default Camera;

View File

@ -1,4 +1,7 @@
const Camera2 = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Camera2 = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Camera2 = (props) => (
/>
</svg>
);
export default Camera2;

View File

@ -1,4 +1,7 @@
const Camerafilled = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Camerafilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Camerafilled = (props) => (
/>
</svg>
);
export default Camerafilled;

View File

@ -1,4 +1,7 @@
const Car = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Car = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Car = (props) => (
/>
</svg>
);
export default Car;

View File

@ -1,4 +1,7 @@
const Carfilled = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Carfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Carfilled = (props) => (
/>
</svg>
);
export default Carfilled;

View File

@ -1,4 +1,7 @@
const Carsel = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Carsel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
@ -13,4 +16,5 @@ const Carsel = (props) => (
</g>
</svg>
);
export default Carsel;

View File

@ -1,4 +1,7 @@
const Close = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Close = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Close = (props) => (
/>
</svg>
);
export default Close;

View File

@ -1,4 +1,7 @@
const Configure = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Configure = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Configure = (props) => (
/>
</svg>
);
export default Configure;

View File

@ -1,4 +1,7 @@
const Day = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Day = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Day = (props) => (
/>
</svg>
);
export default Day;

View File

@ -1,4 +1,7 @@
const Delete = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Delete = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Delete = (props) => (
/>
</svg>
);
export default Delete;

View File

@ -1,4 +1,7 @@
const Diagnose = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Diagnose = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Diagnose = (props) => (
/>
</svg>
);
export default Diagnose;

View File

@ -1,4 +1,7 @@
const Digicam = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Digicam = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Digicam = (props) => (
/>
</svg>
);
export default Digicam;

View File

@ -1,4 +1,7 @@
const Dispatch = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Dispatch = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Dispatch = (props) => (
/>
</svg>
);
export default Dispatch;

View File

@ -1,4 +1,7 @@
const Dispatchsel = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Dispatchsel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
@ -13,4 +16,5 @@ const Dispatchsel = (props) => (
</g>
</svg>
);
export default Dispatchsel;

View File

@ -1,4 +1,7 @@
const Document = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Document = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Document = (props) => (
/>
</svg>
);
export default Document;

View File

@ -1,4 +1,7 @@
const Download = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Download = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Download = (props) => (
/>
</svg>
);
export default Download;

View File

@ -1,4 +1,7 @@
const Edit = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Edit = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Edit = (props) => (
/>
</svg>
);
export default Edit;

View File

@ -1,4 +1,7 @@
const Errorfilled = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Errorfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="#F55D58"
@ -7,4 +10,5 @@ const Errorfilled = (props) => (
/>
</svg>
);
export default Errorfilled;

View File

@ -1,4 +1,7 @@
const Exchange = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Exchange = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Exchange = (props) => (
/>
</svg>
);
export default Exchange;

View File

@ -1,4 +1,7 @@
const Export = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Export = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Export = (props) => (
/>
</svg>
);
export default Export;

View File

@ -1,4 +1,7 @@
const Failurefilled = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Failurefilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="#F55D58"
@ -7,4 +10,5 @@ const Failurefilled = (props) => (
/>
</svg>
);
export default Failurefilled;

View File

@ -1,4 +1,7 @@
const Files = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Files = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="#666"
@ -7,4 +10,5 @@ const Files = (props) => (
/>
</svg>
);
export default Files;

View File

@ -1,4 +1,7 @@
const Filessel = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Filessel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
@ -13,4 +16,5 @@ const Filessel = (props) => (
</g>
</svg>
);
export default Filessel;

View File

@ -1,4 +1,7 @@
const Filter = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Filter = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Filter = (props) => (
/>
</svg>
);
export default Filter;

View File

@ -1,4 +1,7 @@
const Folder = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Folder = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Folder = (props) => (
/>
</svg>
);
export default Folder;

View File

@ -1,4 +1,7 @@
const Folderfilled = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Folderfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Folderfilled = (props) => (
/>
</svg>
);
export default Folderfilled;

View File

@ -1,4 +1,7 @@
const Frame = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Frame = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Frame = (props) => (
/>
</svg>
);
export default Frame;

View File

@ -1,4 +1,7 @@
const Fullscreen = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Fullscreen = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Fullscreen = (props) => (
/>
</svg>
);
export default Fullscreen;

View File

@ -1,4 +1,7 @@
const Fullscreenexit = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Fullscreenexit = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Fullscreenexit = (props) => (
/>
</svg>
);
export default Fullscreenexit;

View File

@ -1,4 +1,7 @@
const Guide = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Guide = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Guide = (props) => (
/>
</svg>
);
export default Guide;

View File

@ -1,4 +1,7 @@
const Help = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Help = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Help = (props) => (
/>
</svg>
);
export default Help;

View File

@ -1,4 +1,7 @@
const Hide = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Hide = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Hide = (props) => (
/>
</svg>
);
export default Hide;

View File

@ -1,4 +1,7 @@
const History = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const History = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const History = (props) => (
/>
</svg>
);
export default History;

View File

@ -1,4 +1,7 @@
const Homepage = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Homepage = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Homepage = (props) => (
/>
</svg>
);
export default Homepage;

View File

@ -1,4 +1,7 @@
const Humanfilled = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Humanfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Humanfilled = (props) => (
/>
</svg>
);
export default Humanfilled;

View File

@ -1,4 +1,7 @@
const Identify = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Identify = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Identify = (props) => (
/>
</svg>
);
export default Identify;

View File

@ -1,4 +1,7 @@
const Identifyfilled = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Identifyfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Identifyfilled = (props) => (
/>
</svg>
);
export default Identifyfilled;

View File

@ -1,4 +1,7 @@
const Identifysel = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Identifysel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
@ -13,4 +16,5 @@ const Identifysel = (props) => (
</g>
</svg>
);
export default Identifysel;

View File

@ -1,4 +1,7 @@
const Import = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Import = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Import = (props) => (
/>
</svg>
);
export default Import;

View File

@ -1,4 +1,7 @@
const Infomationfilled = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Infomationfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="#59ADF7"
@ -7,4 +10,5 @@ const Infomationfilled = (props) => (
/>
</svg>
);
export default Infomationfilled;

View File

@ -1,4 +1,7 @@
const Keeping = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Keeping = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Keeping = (props) => (
/>
</svg>
);
export default Keeping;

View File

@ -1,4 +1,7 @@
const List = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const List = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const List = (props) => (
/>
</svg>
);
export default List;

View File

@ -1,4 +1,7 @@
const Location = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Location = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Location = (props) => (
/>
</svg>
);
export default Location;

View File

@ -1,4 +1,7 @@
const Mail = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Mail = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Mail = (props) => (
/>
</svg>
);
export default Mail;

View File

@ -1,4 +1,7 @@
const Manage = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Manage = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Manage = (props) => (
/>
</svg>
);
export default Manage;

View File

@ -1,4 +1,7 @@
const Message = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Message = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Message = (props) => (
/>
</svg>
);
export default Message;

View File

@ -1,4 +1,7 @@
const Model = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Model = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Model = (props) => (
/>
</svg>
);
export default Model;

View File

@ -1,4 +1,7 @@
const Modelsel = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Modelsel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
@ -13,4 +16,5 @@ const Modelsel = (props) => (
</g>
</svg>
);
export default Modelsel;

View File

@ -1,4 +1,7 @@
const Night = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Night = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Night = (props) => (
/>
</svg>
);
export default Night;

View File

@ -1,4 +1,7 @@
const Notice = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Notice = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Notice = (props) => (
/>
</svg>
);
export default Notice;

View File

@ -1,4 +1,7 @@
const Noticesel = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Noticesel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
@ -13,4 +16,5 @@ const Noticesel = (props) => (
</g>
</svg>
);
export default Noticesel;

View File

@ -1,4 +1,7 @@
const Offline = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Offline = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Offline = (props) => (
/>
</svg>
);
export default Offline;

View File

@ -1,4 +1,7 @@
const Offlinesel = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Offlinesel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="nonzero">
<path
@ -12,4 +15,5 @@ const Offlinesel = (props) => (
</g>
</svg>
);
export default Offlinesel;

View File

@ -1,4 +1,7 @@
const Password = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Password = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Password = (props) => (
/>
</svg>
);
export default Password;

View File

@ -1,4 +1,7 @@
const Pause = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Pause = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Pause = (props) => (
/>
</svg>
);
export default Pause;

View File

@ -1,4 +1,7 @@
const Personnel = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Personnel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Personnel = (props) => (
/>
</svg>
);
export default Personnel;

View File

@ -1,4 +1,7 @@
const Personnelsel = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Personnelsel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="nonzero">
<path
@ -12,4 +15,5 @@ const Personnelsel = (props) => (
</g>
</svg>
);
export default Personnelsel;

View File

@ -1,4 +1,7 @@
const Picture = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Picture = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Picture = (props) => (
/>
</svg>
);
export default Picture;

View File

@ -1,4 +1,7 @@
const Play = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Play = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Play = (props) => (
/>
</svg>
);
export default Play;

View File

@ -1,4 +1,7 @@
const Recall = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Recall = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Recall = (props) => (
/>
</svg>
);
export default Recall;

View File

@ -1,4 +1,7 @@
const Recallsel = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Recallsel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
@ -13,4 +16,5 @@ const Recallsel = (props) => (
</g>
</svg>
);
export default Recallsel;

View File

@ -1,4 +1,7 @@
const Refresh = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Refresh = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Refresh = (props) => (
/>
</svg>
);
export default Refresh;

View File

@ -1,4 +1,7 @@
const Report = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Report = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Report = (props) => (
/>
</svg>
);
export default Report;

View File

@ -1,4 +1,7 @@
const Reset = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Reset = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Reset = (props) => (
/>
</svg>
);
export default Reset;

View File

@ -1,4 +1,7 @@
const Retrieval = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Retrieval = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Retrieval = (props) => (
/>
</svg>
);
export default Retrieval;

View File

@ -1,4 +1,7 @@
const Retrievalsel = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Retrievalsel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
@ -13,4 +16,5 @@ const Retrievalsel = (props) => (
</g>
</svg>
);
export default Retrievalsel;

View File

@ -1,4 +1,7 @@
const Route = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Route = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Route = (props) => (
/>
</svg>
);
export default Route;

View File

@ -1,4 +1,7 @@
const Routefilled = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Routefilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Routefilled = (props) => (
/>
</svg>
);
export default Routefilled;

View File

@ -1,4 +1,7 @@
const Save = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Save = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Save = (props) => (
/>
</svg>
);
export default Save;

View File

@ -1,4 +1,7 @@
const Search = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Search = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Search = (props) => (
/>
</svg>
);
export default Search;

View File

@ -1,4 +1,7 @@
const Setting = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Setting = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Setting = (props) => (
/>
</svg>
);
export default Setting;

View File

@ -1,4 +1,7 @@
const Show = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Show = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Show = (props) => (
/>
</svg>
);
export default Show;

View File

@ -1,4 +1,7 @@
const Sortdecrease = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Sortdecrease = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Sortdecrease = (props) => (
/>
</svg>
);
export default Sortdecrease;

View File

@ -1,4 +1,7 @@
const Sortincrease = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Sortincrease = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Sortincrease = (props) => (
/>
</svg>
);
export default Sortincrease;

View File

@ -1,4 +1,7 @@
const Stopfilled = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Stopfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="#CCC"
@ -7,4 +10,5 @@ const Stopfilled = (props) => (
/>
</svg>
);
export default Stopfilled;

View File

@ -1,4 +1,7 @@
const Structure = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Structure = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Structure = (props) => (
/>
</svg>
);
export default Structure;

View File

@ -1,4 +1,7 @@
const Successfilled = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Successfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="#3CD6A3"
@ -7,4 +10,5 @@ const Successfilled = (props) => (
/>
</svg>
);
export default Successfilled;

View File

@ -1,4 +1,7 @@
const System = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const System = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const System = (props) => (
/>
</svg>
);
export default System;

View File

@ -1,4 +1,7 @@
const Target = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Target = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Target = (props) => (
/>
</svg>
);
export default Target;

View File

@ -1,4 +1,7 @@
const Thumbdown = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Thumbdown = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Thumbdown = (props) => (
/>
</svg>
);
export default Thumbdown;

View File

@ -1,4 +1,7 @@
const Thumbup = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Thumbup = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Thumbup = (props) => (
/>
</svg>
);
export default Thumbup;

View File

@ -1,4 +1,7 @@
const Time = (props) => (
import React from 'react';
import { CustomSVGProps } from '../type';
const Time = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
@ -7,4 +10,5 @@ const Time = (props) => (
/>
</svg>
);
export default Time;

Some files were not shown because too many files have changed in this diff Show More