Skip to content

Commit 9d1f7ed

Browse files
committed
feat(icons): regenerate icons
1 parent def649e commit 9d1f7ed

Some content is hidden

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

77 files changed

+2267
-8
lines changed

src/icons/a-b-2.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 AB2({
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-a-b-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='M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z' />
24+
<path d='M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z' />
25+
<path d='M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4' />
26+
<path d='M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9' />
27+
<path d='M8 7h-4' />
28+
</svg>
29+
);
30+
}

src/icons/ampersand.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import React from 'react';
2+
3+
export default function Ampersand({
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-ampersand'
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='M19 20l-10.403 -10.972a2.948 2.948 0 0 1 0 -4.165a2.94 2.94 0 0 1 4.161 0a2.948 2.948 0 0 1 0 4.165l-4.68 4.687a3.685 3.685 0 0 0 0 5.207a3.675 3.675 0 0 0 5.2 0l5.722 -5.922' />
24+
</svg>
25+
);
26+
}

src/icons/arrow-guide.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 ArrowGuide({
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-arrow-guide'
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+
<circle cx='5' cy='19' r='2' />
24+
<path d='M7 19h3a2 2 0 0 0 2 -2v-8a2 2 0 0 1 2 -2h7' />
25+
<path d='M18 4l3 3l-3 3' />
26+
</svg>
27+
);
28+
}

src/icons/arrow-merge-both.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 ArrowMergeBoth({
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-arrow-merge-both'
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 8l-4 -4l-4 4' />
24+
<path d='M12 20v-16' />
25+
<path d='M18 18c-4 -1.333 -6 -4.667 -6 -10' />
26+
<path d='M6 18c4 -1.333 6 -4.667 6 -10' />
27+
</svg>
28+
);
29+
}

src/icons/arrow-merge-left.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 ArrowMergeLeft({
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-arrow-merge-left'
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='M8 8l4 -4l4 4' />
24+
<path d='M12 20v-16' />
25+
<path d='M6 18c4 -1.333 6 -4.667 6 -10' />
26+
</svg>
27+
);
28+
}

src/icons/arrow-merge-right.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 ArrowMergeRight({
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-arrow-merge-right'
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 8l-4 -4l-4 4' />
24+
<path d='M12 20v-16' />
25+
<path d='M18 18c-4 -1.333 -6 -4.667 -6 -10' />
26+
</svg>
27+
);
28+
}

src/icons/arrow-roundabout-left.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 ArrowRoundaboutLeft({
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-arrow-roundabout-left'
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 9h8a5 5 0 1 1 5 5v7' />
24+
<path d='M7 5l-4 4l4 4' />
25+
</svg>
26+
);
27+
}
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 ArrowRoundaboutRight({
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-arrow-roundabout-right'
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='M21 9h-8a5 5 0 1 0 -5 5v7' />
24+
<path d='M17 5l4 4l-4 4' />
25+
</svg>
26+
);
27+
}
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 ArrowsMoveHorizontal({
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-move-horizontal'
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='M18 9l3 3l-3 3' />
24+
<path d='M15 12h6' />
25+
<path d='M6 9l-3 3l3 3' />
26+
<path d='M3 12h6' />
27+
</svg>
28+
);
29+
}

src/icons/arrows-move-vertical.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 ArrowsMoveVertical({
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-move-vertical'
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='M9 18l3 3l3 -3' />
24+
<path d='M12 15v6' />
25+
<path d='M15 6l-3 -3l-3 3' />
26+
<path d='M12 3v6' />
27+
</svg>
28+
);
29+
}

0 commit comments

Comments
 (0)