Skip to content

Commit b473d0c

Browse files
committed
regenerate icons
1 parent 040c70f commit b473d0c

347 files changed

Lines changed: 7738 additions & 69 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/Icon123.tsx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import React from 'react'
2+
import { IconProps } from './types'
3+
4+
const Icon123: React.FC<IconProps> = ({ ...props }) => (
5+
<svg
6+
xmlns="http://www.w3.org/2000/svg"
7+
enableBackground="new 0 0 24 24"
8+
viewBox="0 0 24 24"
9+
{...props}
10+
>
11+
{props.title && <title>{props.title}</title>}
12+
<g>
13+
<rect fill="none" height="24" width="24" />
14+
</g>
15+
<g>
16+
<path d="M7,15H5.5v-4.5H4V9h3V15z M13.5,13.5h-3v-1h2c0.55,0,1-0.45,1-1V10c0-0.55-0.45-1-1-1H9v1.5h3v1h-2c-0.55,0-1,0.45-1,1V15 h4.5V13.5z M19.5,14v-4c0-0.55-0.45-1-1-1H15v1.5h3v1h-2v1h2v1h-3V15h3.5C19.05,15,19.5,14.55,19.5,14z" />
17+
</g>
18+
</svg>
19+
)
20+
21+
export { Icon123 as default }

src/Icon18UpRating.tsx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import React from 'react'
2+
import { IconProps } from './types'
3+
4+
const Icon18UpRating: React.FC<IconProps> = ({ ...props }) => (
5+
<svg
6+
xmlns="http://www.w3.org/2000/svg"
7+
enableBackground="new 0 0 24 24"
8+
viewBox="0 0 24 24"
9+
{...props}
10+
>
11+
{props.title && <title>{props.title}</title>}
12+
<g>
13+
<rect fill="none" height="24" width="24" />
14+
</g>
15+
<g>
16+
<g>
17+
<rect height="1.5" width="1.5" x="13" y="12.5" />
18+
<rect height="1.5" width="1.5" x="13" y="10" />
19+
<path d="M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M10,15H8.5v-4.5H7V9h3V15z M16,14 c0,0.55-0.45,1-1,1h-2.5c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1H15c0.55,0,1,0.45,1,1V14z" />
20+
</g>
21+
</g>
22+
</svg>
23+
)
24+
25+
export { Icon18UpRating as default }

src/IconAbc.tsx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import React from 'react'
2+
import { IconProps } from './types'
3+
4+
const IconAbc: React.FC<IconProps> = ({ ...props }) => (
5+
<svg
6+
xmlns="http://www.w3.org/2000/svg"
7+
enableBackground="new 0 0 24 24"
8+
viewBox="0 0 24 24"
9+
{...props}
10+
>
11+
{props.title && <title>{props.title}</title>}
12+
<g>
13+
<rect fill="none" height="24" width="24" />
14+
</g>
15+
<g>
16+
<path d="M21,11h-1.5v-0.5h-2v3h2V13H21v1c0,0.55-0.45,1-1,1h-3c-0.55,0-1-0.45-1-1v-4c0-0.55,0.45-1,1-1h3c0.55,0,1,0.45,1,1V11z M8,10v5H6.5v-1.5h-2V15H3v-5c0-0.55,0.45-1,1-1h3C7.55,9,8,9.45,8,10z M6.5,10.5h-2V12h2V10.5z M13.5,12c0.55,0,1,0.45,1,1v1 c0,0.55-0.45,1-1,1h-4V9h4c0.55,0,1,0.45,1,1v1C14.5,11.55,14.05,12,13.5,12z M11,10.5v0.75h2V10.5H11z M13,12.75h-2v0.75h2V12.75z" />
17+
</g>
18+
</svg>
19+
)
20+
21+
export { IconAbc as default }

src/IconAccountBox.tsx

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,19 @@ import React from 'react'
22
import { IconProps } from './types'
33

44
const IconAccountBox: React.FC<IconProps> = ({ ...props }) => (
5-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5+
<svg
6+
xmlns="http://www.w3.org/2000/svg"
7+
enableBackground="new 0 0 24 24"
8+
viewBox="0 0 24 24"
9+
{...props}
10+
>
611
{props.title && <title>{props.title}</title>}
7-
<path d="M0 0h24v24H0z" fill="none" />
8-
<path d="M3 5v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z" />
12+
<g>
13+
<rect fill="none" height="24" width="24" />
14+
</g>
15+
<g>
16+
<path d="M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M12,6c1.93,0,3.5,1.57,3.5,3.5 c0,1.93-1.57,3.5-3.5,3.5s-3.5-1.57-3.5-3.5C8.5,7.57,10.07,6,12,6z M19,19H5v-0.23c0-0.62,0.28-1.2,0.76-1.58 C7.47,15.82,9.64,15,12,15s4.53,0.82,6.24,2.19c0.48,0.38,0.76,0.97,0.76,1.58V19z" />
17+
</g>
918
</svg>
1019
)
1120

src/IconAccountCircle.tsx

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,19 @@ import React from 'react'
22
import { IconProps } from './types'
33

44
const IconAccountCircle: React.FC<IconProps> = ({ ...props }) => (
5-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5+
<svg
6+
xmlns="http://www.w3.org/2000/svg"
7+
enableBackground="new 0 0 24 24"
8+
viewBox="0 0 24 24"
9+
{...props}
10+
>
611
{props.title && <title>{props.title}</title>}
7-
<path d="M0 0h24v24H0z" fill="none" />
8-
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z" />
12+
<g>
13+
<rect fill="none" height="24" width="24" />
14+
</g>
15+
<g>
16+
<path d="M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,6c1.93,0,3.5,1.57,3.5,3.5S13.93,13,12,13 s-3.5-1.57-3.5-3.5S10.07,6,12,6z M12,20c-2.03,0-4.43-0.82-6.14-2.88C7.55,15.8,9.68,15,12,15s4.45,0.8,6.14,2.12 C16.43,19.18,14.03,20,12,20z" />
17+
</g>
918
</svg>
1019
)
1120

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react'
22
import { IconProps } from './types'
33

4-
const IconEmojiFlags: React.FC<IconProps> = ({ ...props }) => (
4+
const IconAddCard: React.FC<IconProps> = ({ ...props }) => (
55
<svg
66
xmlns="http://www.w3.org/2000/svg"
77
enableBackground="new 0 0 24 24"
@@ -13,10 +13,9 @@ const IconEmojiFlags: React.FC<IconProps> = ({ ...props }) => (
1313
<rect fill="none" height="24" width="24" />
1414
</g>
1515
<g>
16-
<g />
17-
<path d="M14,9l-1-2H7V5.72C7.6,5.38,8,4.74,8,4c0-1.1-0.9-2-2-2S4,2.9,4,4c0,0.74,0.4,1.38,1,1.72V21h2v-4h5l1,2h7V9H14z M18,17h-4 l-1-2H7V9h5l1,2h5V17z" />
16+
<path d="M20,4H4C2.89,4,2.01,4.89,2.01,6L2,18c0,1.11,0.89,2,2,2h10v-2H4v-6h18V6C22,4.89,21.11,4,20,4z M20,8H4V6h16V8z M24,17v2 h-3v3h-2v-3h-3v-2h3v-3h2v3H24z" />
1817
</g>
1918
</svg>
2019
)
2120

22-
export { IconEmojiFlags as default }
21+
export { IconAddCard as default }

src/IconAddHome.tsx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import React from 'react'
2+
import { IconProps } from './types'
3+
4+
const IconAddHome: React.FC<IconProps> = ({ ...props }) => (
5+
<svg
6+
xmlns="http://www.w3.org/2000/svg"
7+
enableBackground="new 0 0 24 24"
8+
viewBox="0 0 24 24"
9+
{...props}
10+
>
11+
{props.title && <title>{props.title}</title>}
12+
<g>
13+
<rect fill="none" height="24" width="24" />
14+
</g>
15+
<g>
16+
<g>
17+
<g>
18+
<path d="M18,11c0.7,0,1.37,0.1,2,0.29V9l-8-6L4,9v12h7.68C11.25,20.09,11,19.08,11,18C11,14.13,14.13,11,18,11z" />
19+
</g>
20+
<g>
21+
<path d="M18,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S20.76,13,18,13z M21,18.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21V18.5z" />
22+
</g>
23+
</g>
24+
</g>
25+
</svg>
26+
)
27+
28+
export { IconAddHome as default }

src/IconAddHomeWork.tsx

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import React from 'react'
2+
import { IconProps } from './types'
3+
4+
const IconAddHomeWork: React.FC<IconProps> = ({ ...props }) => (
5+
<svg
6+
xmlns="http://www.w3.org/2000/svg"
7+
enableBackground="new 0 0 24 24"
8+
viewBox="0 0 24 24"
9+
{...props}
10+
>
11+
{props.title && <title>{props.title}</title>}
12+
<g>
13+
<rect fill="none" height="24" width="24" />
14+
</g>
15+
<g>
16+
<g>
17+
<path d="M15,11.68V11L8,6l-7,5v10h5v-6h4v6h1.68C11.25,20.09,11,19.08,11,18C11,15.21,12.64,12.81,15,11.68z" />
18+
<path d="M23,13.11V3H10v1.97l7,5v1.11c0.33-0.05,0.66-0.08,1-0.08C19.96,11,21.73,11.81,23,13.11z M17,7h2v2h-2V7z" />
19+
<g>
20+
<path d="M23,18c0-2.76-2.24-5-5-5s-5,2.24-5,5s2.24,5,5,5S23,20.76,23,18z M17.5,21v-2.5H15v-1h2.5V15h1v2.5H21v1h-2.5V21H17.5z" />
21+
</g>
22+
</g>
23+
</g>
24+
</svg>
25+
)
26+
27+
export { IconAddHomeWork as default }

src/IconAdfScanner.tsx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import React from 'react'
2+
import { IconProps } from './types'
3+
4+
const IconAdfScanner: React.FC<IconProps> = ({ ...props }) => (
5+
<svg
6+
xmlns="http://www.w3.org/2000/svg"
7+
enableBackground="new 0 0 24 24"
8+
viewBox="0 0 24 24"
9+
{...props}
10+
>
11+
{props.title && <title>{props.title}</title>}
12+
<g>
13+
<rect fill="none" height="24" width="24" />
14+
</g>
15+
<g>
16+
<path d="M19,12h-1V4H6v8H5c-1.66,0-3,1.34-3,3v5h20v-5C22,13.34,20.66,12,19,12z M16,12H8V6h8V12z M18,17c-0.55,0-1-0.45-1-1 c0-0.55,0.45-1,1-1s1,0.45,1,1C19,16.55,18.55,17,18,17z" />
17+
</g>
18+
</svg>
19+
)
20+
21+
export { IconAdfScanner as default }
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react'
22
import { IconProps } from './types'
33

4-
const IconFacebook: React.FC<IconProps> = ({ ...props }) => (
4+
const IconAirlineStops: React.FC<IconProps> = ({ ...props }) => (
55
<svg
66
xmlns="http://www.w3.org/2000/svg"
77
enableBackground="new 0 0 24 24"
@@ -10,8 +10,8 @@ const IconFacebook: React.FC<IconProps> = ({ ...props }) => (
1010
>
1111
{props.title && <title>{props.title}</title>}
1212
<rect fill="none" height="24" width="24" />
13-
<path d="M22,12c0-5.52-4.48-10-10-10S2,6.48,2,12c0,4.84,3.44,8.87,8,9.8V15H8v-3h2V9.5C10,7.57,11.57,6,13.5,6H16v3h-2 c-0.55,0-1,0.45-1,1v2h3v3h-3v6.95C18.05,21.45,22,17.19,22,12z" />
13+
<path d="M18.21,9.21C15.93,10.78,13.45,13.3,13,17h2v2H9v-2h2c-0.5-4.5-4.37-8-9-8V7c4.39,0,8.22,2.55,10,6.3 c1.13-2.43,2.99-4.25,4.78-5.52L14,5h7v7L18.21,9.21z" />
1414
</svg>
1515
)
1616

17-
export { IconFacebook as default }
17+
export { IconAirlineStops as default }

0 commit comments

Comments
 (0)