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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Add = (props) => (
/> />
</svg> </svg>
); );
export default Add; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Addvideo = (props) => (
/> />
</svg> </svg>
); );
export default Addvideo; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Ai = (props) => (
/> />
</svg> </svg>
); );
export default Ai; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Algorithmfilled = (props) => (
/> />
</svg> </svg>
); );
export default Algorithmfilled; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Analysis = (props) => (
/> />
</svg> </svg>
); );
export default Analysis; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="nonzero"> <g fill="none" fillRule="nonzero">
<path <path
@ -12,4 +15,5 @@ const Analysissel = (props) => (
</g> </g>
</svg> </svg>
); );
export default Analysissel; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Arrowdown = (props) => (
/> />
</svg> </svg>
); );
export default Arrowdown; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Arrowleft = (props) => (
/> />
</svg> </svg>
); );
export default Arrowleft; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Arrowright = (props) => (
/> />
</svg> </svg>
); );
export default Arrowright; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Arrowup = (props) => (
/> />
</svg> </svg>
); );
export default Arrowup; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Attachment = (props) => (
/> />
</svg> </svg>
); );
export default Attachment; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Back = (props) => (
/> />
</svg> </svg>
); );
export default Back; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Bike = (props) => (
/> />
</svg> </svg>
); );
export default Bike; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Bikefilled = (props) => (
/> />
</svg> </svg>
); );
export default Bikefilled; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd"> <g fill="none" fillRule="evenodd">
<path <path
@ -10,4 +13,5 @@ const Bikesel = (props) => (
</g> </g>
</svg> </svg>
); );
export default Bikesel; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Briefcase = (props) => (
/> />
</svg> </svg>
); );
export default Briefcase; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Browser = (props) => (
/> />
</svg> </svg>
); );
export default Browser; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Calendar = (props) => (
/> />
</svg> </svg>
); );
export default Calendar; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Camera = (props) => (
/> />
</svg> </svg>
); );
export default Camera; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Camera2 = (props) => (
/> />
</svg> </svg>
); );
export default Camera2; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Camerafilled = (props) => (
/> />
</svg> </svg>
); );
export default Camerafilled; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Car = (props) => (
/> />
</svg> </svg>
); );
export default Car; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Carfilled = (props) => (
/> />
</svg> </svg>
); );
export default Carfilled; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd"> <g fill="none" fillRule="evenodd">
<path <path
@ -13,4 +16,5 @@ const Carsel = (props) => (
</g> </g>
</svg> </svg>
); );
export default Carsel; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Close = (props) => (
/> />
</svg> </svg>
); );
export default Close; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Configure = (props) => (
/> />
</svg> </svg>
); );
export default Configure; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Day = (props) => (
/> />
</svg> </svg>
); );
export default Day; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Delete = (props) => (
/> />
</svg> </svg>
); );
export default Delete; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Diagnose = (props) => (
/> />
</svg> </svg>
); );
export default Diagnose; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Digicam = (props) => (
/> />
</svg> </svg>
); );
export default Digicam; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Dispatch = (props) => (
/> />
</svg> </svg>
); );
export default Dispatch; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd"> <g fill="none" fillRule="evenodd">
<path <path
@ -13,4 +16,5 @@ const Dispatchsel = (props) => (
</g> </g>
</svg> </svg>
); );
export default Dispatchsel; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Document = (props) => (
/> />
</svg> </svg>
); );
export default Document; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Download = (props) => (
/> />
</svg> </svg>
); );
export default Download; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Edit = (props) => (
/> />
</svg> </svg>
); );
export default Edit; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="#F55D58" fill="#F55D58"
@ -7,4 +10,5 @@ const Errorfilled = (props) => (
/> />
</svg> </svg>
); );
export default Errorfilled; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Exchange = (props) => (
/> />
</svg> </svg>
); );
export default Exchange; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Export = (props) => (
/> />
</svg> </svg>
); );
export default Export; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="#F55D58" fill="#F55D58"
@ -7,4 +10,5 @@ const Failurefilled = (props) => (
/> />
</svg> </svg>
); );
export default Failurefilled; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="#666" fill="#666"
@ -7,4 +10,5 @@ const Files = (props) => (
/> />
</svg> </svg>
); );
export default Files; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd"> <g fill="none" fillRule="evenodd">
<path <path
@ -13,4 +16,5 @@ const Filessel = (props) => (
</g> </g>
</svg> </svg>
); );
export default Filessel; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Filter = (props) => (
/> />
</svg> </svg>
); );
export default Filter; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Folder = (props) => (
/> />
</svg> </svg>
); );
export default Folder; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Folderfilled = (props) => (
/> />
</svg> </svg>
); );
export default Folderfilled; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Frame = (props) => (
/> />
</svg> </svg>
); );
export default Frame; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Fullscreen = (props) => (
/> />
</svg> </svg>
); );
export default Fullscreen; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Fullscreenexit = (props) => (
/> />
</svg> </svg>
); );
export default Fullscreenexit; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Guide = (props) => (
/> />
</svg> </svg>
); );
export default Guide; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Help = (props) => (
/> />
</svg> </svg>
); );
export default Help; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Hide = (props) => (
/> />
</svg> </svg>
); );
export default Hide; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const History = (props) => (
/> />
</svg> </svg>
); );
export default History; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Homepage = (props) => (
/> />
</svg> </svg>
); );
export default Homepage; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Humanfilled = (props) => (
/> />
</svg> </svg>
); );
export default Humanfilled; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Identify = (props) => (
/> />
</svg> </svg>
); );
export default Identify; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Identifyfilled = (props) => (
/> />
</svg> </svg>
); );
export default Identifyfilled; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd"> <g fill="none" fillRule="evenodd">
<path <path
@ -13,4 +16,5 @@ const Identifysel = (props) => (
</g> </g>
</svg> </svg>
); );
export default Identifysel; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Import = (props) => (
/> />
</svg> </svg>
); );
export default Import; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="#59ADF7" fill="#59ADF7"
@ -7,4 +10,5 @@ const Infomationfilled = (props) => (
/> />
</svg> </svg>
); );
export default Infomationfilled; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Keeping = (props) => (
/> />
</svg> </svg>
); );
export default Keeping; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const List = (props) => (
/> />
</svg> </svg>
); );
export default List; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Location = (props) => (
/> />
</svg> </svg>
); );
export default Location; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Mail = (props) => (
/> />
</svg> </svg>
); );
export default Mail; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Manage = (props) => (
/> />
</svg> </svg>
); );
export default Manage; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Message = (props) => (
/> />
</svg> </svg>
); );
export default Message; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Model = (props) => (
/> />
</svg> </svg>
); );
export default Model; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd"> <g fill="none" fillRule="evenodd">
<path <path
@ -13,4 +16,5 @@ const Modelsel = (props) => (
</g> </g>
</svg> </svg>
); );
export default Modelsel; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Night = (props) => (
/> />
</svg> </svg>
); );
export default Night; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Notice = (props) => (
/> />
</svg> </svg>
); );
export default Notice; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd"> <g fill="none" fillRule="evenodd">
<path <path
@ -13,4 +16,5 @@ const Noticesel = (props) => (
</g> </g>
</svg> </svg>
); );
export default Noticesel; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Offline = (props) => (
/> />
</svg> </svg>
); );
export default Offline; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="nonzero"> <g fill="none" fillRule="nonzero">
<path <path
@ -12,4 +15,5 @@ const Offlinesel = (props) => (
</g> </g>
</svg> </svg>
); );
export default Offlinesel; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Password = (props) => (
/> />
</svg> </svg>
); );
export default Password; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Pause = (props) => (
/> />
</svg> </svg>
); );
export default Pause; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Personnel = (props) => (
/> />
</svg> </svg>
); );
export default Personnel; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="nonzero"> <g fill="none" fillRule="nonzero">
<path <path
@ -12,4 +15,5 @@ const Personnelsel = (props) => (
</g> </g>
</svg> </svg>
); );
export default Personnelsel; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Picture = (props) => (
/> />
</svg> </svg>
); );
export default Picture; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Play = (props) => (
/> />
</svg> </svg>
); );
export default Play; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Recall = (props) => (
/> />
</svg> </svg>
); );
export default Recall; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd"> <g fill="none" fillRule="evenodd">
<path <path
@ -13,4 +16,5 @@ const Recallsel = (props) => (
</g> </g>
</svg> </svg>
); );
export default Recallsel; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Refresh = (props) => (
/> />
</svg> </svg>
); );
export default Refresh; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Report = (props) => (
/> />
</svg> </svg>
); );
export default Report; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Reset = (props) => (
/> />
</svg> </svg>
); );
export default Reset; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Retrieval = (props) => (
/> />
</svg> </svg>
); );
export default Retrieval; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd"> <g fill="none" fillRule="evenodd">
<path <path
@ -13,4 +16,5 @@ const Retrievalsel = (props) => (
</g> </g>
</svg> </svg>
); );
export default Retrievalsel; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Route = (props) => (
/> />
</svg> </svg>
); );
export default Route; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Routefilled = (props) => (
/> />
</svg> </svg>
); );
export default Routefilled; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Save = (props) => (
/> />
</svg> </svg>
); );
export default Save; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Search = (props) => (
/> />
</svg> </svg>
); );
export default Search; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Setting = (props) => (
/> />
</svg> </svg>
); );
export default Setting; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Show = (props) => (
/> />
</svg> </svg>
); );
export default Show; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Sortdecrease = (props) => (
/> />
</svg> </svg>
); );
export default Sortdecrease; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Sortincrease = (props) => (
/> />
</svg> </svg>
); );
export default Sortincrease; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="#CCC" fill="#CCC"
@ -7,4 +10,5 @@ const Stopfilled = (props) => (
/> />
</svg> </svg>
); );
export default Stopfilled; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Structure = (props) => (
/> />
</svg> </svg>
); );
export default Structure; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="#3CD6A3" fill="#3CD6A3"
@ -7,4 +10,5 @@ const Successfilled = (props) => (
/> />
</svg> </svg>
); );
export default Successfilled; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const System = (props) => (
/> />
</svg> </svg>
); );
export default System; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Target = (props) => (
/> />
</svg> </svg>
); );
export default Target; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Thumbdown = (props) => (
/> />
</svg> </svg>
); );
export default Thumbdown; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Thumbup = (props) => (
/> />
</svg> </svg>
); );
export default Thumbup; 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}> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path <path
fill="currentColor" fill="currentColor"
@ -7,4 +10,5 @@ const Time = (props) => (
/> />
</svg> </svg>
); );
export default Time; export default Time;

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