Skip to content

Commit abc1e63

Browse files
committed
feat(icons): regenerate icons
1 parent 5e47124 commit abc1e63

20 files changed

+565
-0
lines changed

src/icons/arrows-exchange-2.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import React from 'react';
2+
3+
export default function ArrowsExchange2({
4+
size = 24,
5+
color = 'currentColor',
6+
...restProps
7+
}) {
8+
return (
9+
<svg
10+
xmlns='http://www.w3.org/2000/svg'
11+
className='icon icon-tabler icon-tabler-arrows-exchange-2'
12+
width={size}
13+
height={size}
14+
viewBox='0 0 24 24'
15+
stroke={color}
16+
strokeWidth='2'
17+
fill='none'
18+
strokeLinecap='round'
19+
strokeLinejoin='round'
20+
{...restProps}
21+
>
22+
<path stroke='none' d='M0 0h24v24H0z' fill='none' />
23+
<path d='M17 10h-14l4 -4' />
24+
<path d='M7 14h14l-4 4' />
25+
</svg>
26+
);
27+
}

src/icons/arrows-exchange.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import React from 'react';
2+
3+
export default function ArrowsExchange({
4+
size = 24,
5+
color = 'currentColor',
6+
...restProps
7+
}) {
8+
return (
9+
<svg
10+
xmlns='http://www.w3.org/2000/svg'
11+
className='icon icon-tabler icon-tabler-arrows-exchange'
12+
width={size}
13+
height={size}
14+
viewBox='0 0 24 24'
15+
stroke={color}
16+
strokeWidth='2'
17+
fill='none'
18+
strokeLinecap='round'
19+
strokeLinejoin='round'
20+
{...restProps}
21+
>
22+
<path stroke='none' d='M0 0h24v24H0z' fill='none' />
23+
<path d='M7 10h14l-4 -4' />
24+
<path d='M17 14h-14l4 4' />
25+
</svg>
26+
);
27+
}

src/icons/category-2.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import React from 'react';
2+
3+
export default function Category2({
4+
size = 24,
5+
color = 'currentColor',
6+
...restProps
7+
}) {
8+
return (
9+
<svg
10+
xmlns='http://www.w3.org/2000/svg'
11+
className='icon icon-tabler icon-tabler-category-2'
12+
width={size}
13+
height={size}
14+
viewBox='0 0 24 24'
15+
stroke={color}
16+
strokeWidth='2'
17+
fill='none'
18+
strokeLinecap='round'
19+
strokeLinejoin='round'
20+
{...restProps}
21+
>
22+
<path stroke='none' d='M0 0h24v24H0z' fill='none' />
23+
<path d='M14 4h6v6h-6z' />
24+
<path d='M4 14h6v6h-6z' />
25+
<circle cx='17' cy='17' r='3' />
26+
<circle cx='7' cy='7' r='3' />
27+
</svg>
28+
);
29+
}

src/icons/category.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import React from 'react';
2+
3+
export default function Category({
4+
size = 24,
5+
color = 'currentColor',
6+
...restProps
7+
}) {
8+
return (
9+
<svg
10+
xmlns='http://www.w3.org/2000/svg'
11+
className='icon icon-tabler icon-tabler-category'
12+
width={size}
13+
height={size}
14+
viewBox='0 0 24 24'
15+
stroke={color}
16+
strokeWidth='2'
17+
fill='none'
18+
strokeLinecap='round'
19+
strokeLinejoin='round'
20+
{...restProps}
21+
>
22+
<path stroke='none' d='M0 0h24v24H0z' fill='none' />
23+
<path d='M4 4h6v6h-6z' />
24+
<path d='M14 4h6v6h-6z' />
25+
<path d='M4 14h6v6h-6z' />
26+
<circle cx='17' cy='17' r='3' />
27+
</svg>
28+
);
29+
}

src/icons/direction-sign.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import React from 'react';
2+
3+
export default function DirectionSign({
4+
size = 24,
5+
color = 'currentColor',
6+
...restProps
7+
}) {
8+
return (
9+
<svg
10+
xmlns='http://www.w3.org/2000/svg'
11+
className='icon icon-tabler icon-tabler-direction-sign'
12+
width={size}
13+
height={size}
14+
viewBox='0 0 24 24'
15+
stroke={color}
16+
strokeWidth='2'
17+
fill='none'
18+
strokeLinecap='round'
19+
strokeLinejoin='round'
20+
{...restProps}
21+
>
22+
<path stroke='none' d='M0 0h24v24H0z' fill='none' />
23+
<path d='M3.32 12.774l7.906 7.905c.427 .428 1.12 .428 1.548 0l7.905 -7.905a1.095 1.095 0 0 0 0 -1.548l-7.905 -7.905a1.095 1.095 0 0 0 -1.548 0l-7.905 7.905a1.095 1.095 0 0 0 0 1.548z' />
24+
<path d='M8 12h7.5' />
25+
<path d='M12 8.5l3.5 3.5l-3.5 3.5' />
26+
</svg>
27+
);
28+
}

src/icons/discount-check.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import React from 'react';
2+
3+
export default function DiscountCheck({
4+
size = 24,
5+
color = 'currentColor',
6+
...restProps
7+
}) {
8+
return (
9+
<svg
10+
xmlns='http://www.w3.org/2000/svg'
11+
className='icon icon-tabler icon-tabler-discount-check'
12+
width={size}
13+
height={size}
14+
viewBox='0 0 24 24'
15+
stroke={color}
16+
strokeWidth='2'
17+
fill='none'
18+
strokeLinecap='round'
19+
strokeLinejoin='round'
20+
{...restProps}
21+
>
22+
<path stroke='none' d='M0 0h24v24H0z' fill='none' />
23+
<path d='M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7c.412 .41 .97 .64 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1c0 .58 .23 1.138 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1' />
24+
<path d='M9 12l2 2l4 -4' />
25+
</svg>
26+
);
27+
}

src/icons/fish-hook.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import React from 'react';
2+
3+
export default function FishHook({
4+
size = 24,
5+
color = 'currentColor',
6+
...restProps
7+
}) {
8+
return (
9+
<svg
10+
xmlns='http://www.w3.org/2000/svg'
11+
className='icon icon-tabler icon-tabler-fish-hook'
12+
width={size}
13+
height={size}
14+
viewBox='0 0 24 24'
15+
stroke={color}
16+
strokeWidth='2'
17+
fill='none'
18+
strokeLinecap='round'
19+
strokeLinejoin='round'
20+
{...restProps}
21+
>
22+
<path stroke='none' d='M0 0h24v24H0z' fill='none' />
23+
<path d='M16 9v6a5 5 0 0 1 -10 0v-4l3 3' />
24+
<circle cx='16' cy='7' r='2' />
25+
<path d='M16 5v-2' />
26+
</svg>
27+
);
28+
}

src/icons/fridge.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import React from 'react';
2+
3+
export default function Fridge({
4+
size = 24,
5+
color = 'currentColor',
6+
...restProps
7+
}) {
8+
return (
9+
<svg
10+
xmlns='http://www.w3.org/2000/svg'
11+
className='icon icon-tabler icon-tabler-fridge'
12+
width={size}
13+
height={size}
14+
viewBox='0 0 24 24'
15+
stroke={color}
16+
strokeWidth='2'
17+
fill='none'
18+
strokeLinecap='round'
19+
strokeLinejoin='round'
20+
{...restProps}
21+
>
22+
<path stroke='none' d='M0 0h24v24H0z' fill='none' />
23+
<rect x='5' y='3' width='14' height='18' rx='2' />
24+
<path d='M5 10h14' />
25+
<path d='M9 13v3' />
26+
<path d='M9 6v1' />
27+
</svg>
28+
);
29+
}

src/icons/health-recognition.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import React from 'react';
2+
3+
export default function HealthRecognition({
4+
size = 24,
5+
color = 'currentColor',
6+
...restProps
7+
}) {
8+
return (
9+
<svg
10+
xmlns='http://www.w3.org/2000/svg'
11+
className='icon icon-tabler icon-tabler-health-recognition'
12+
width={size}
13+
height={size}
14+
viewBox='0 0 24 24'
15+
stroke={color}
16+
strokeWidth='2'
17+
fill='none'
18+
strokeLinecap='round'
19+
strokeLinejoin='round'
20+
{...restProps}
21+
>
22+
<path stroke='none' d='M0 0h24v24H0z' fill='none' />
23+
<path d='M4 8v-2a2 2 0 0 1 2 -2h2' />
24+
<path d='M4 16v2a2 2 0 0 0 2 2h2' />
25+
<path d='M16 4h2a2 2 0 0 1 2 2v2' />
26+
<path d='M16 20h2a2 2 0 0 0 2 -2v-2' />
27+
<path d='M8.603 9.61a2.04 2.04 0 0 1 2.912 0l.485 .39l.5 -.396a2.035 2.035 0 0 1 2.897 .007a2.104 2.104 0 0 1 0 2.949l-3.397 3.44l-3.397 -3.44a2.104 2.104 0 0 1 0 -2.95z' />
28+
</svg>
29+
);
30+
}

src/icons/history-toggle.js

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import React from 'react';
2+
3+
export default function HistoryToggle({
4+
size = 24,
5+
color = 'currentColor',
6+
...restProps
7+
}) {
8+
return (
9+
<svg
10+
xmlns='http://www.w3.org/2000/svg'
11+
className='icon icon-tabler icon-tabler-history-toggle'
12+
width={size}
13+
height={size}
14+
viewBox='0 0 24 24'
15+
stroke={color}
16+
strokeWidth='2'
17+
fill='none'
18+
strokeLinecap='round'
19+
strokeLinejoin='round'
20+
{...restProps}
21+
>
22+
<path stroke='none' d='M0 0h24v24H0z' fill='none' />
23+
<path d='M12 8v4l3 3' />
24+
<path d='M8.56 3.69a9 9 0 0 0 -2.92 1.95' />
25+
<path d='M3.69 8.56a9 9 0 0 0 -.69 3.44' />
26+
<path d='M3.69 15.44a9 9 0 0 0 1.95 2.92' />
27+
<path d='M8.56 20.31a9 9 0 0 0 3.44 .69' />
28+
<path d='M15.44 20.31a9 9 0 0 0 2.92 -1.95' />
29+
<path d='M20.31 15.44a9 9 0 0 0 .69 -3.44' />
30+
<path d='M20.31 8.56a9 9 0 0 0 -1.95 -2.92' />
31+
<path d='M15.44 3.69a9 9 0 0 0 -3.44 -.69' />
32+
</svg>
33+
);
34+
}

0 commit comments

Comments
 (0)