File tree Expand file tree Collapse file tree 22 files changed +568
-4
lines changed Expand file tree Collapse file tree 22 files changed +568
-4
lines changed Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ export default function File3d ( {
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-file-3d'
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 3v4a1 1 0 0 0 1 1h4' />
24
+ < path d = 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' />
25
+ < path d = 'M12 13.5l4 -1.5' />
26
+ < path d = 'M8 11.846l4 1.654v4.5l4 -1.846v-4.308l-4 -1.846z' />
27
+ < path d = 'M8 12v4.2l4 1.8' />
28
+ </ svg >
29
+ ) ;
30
+ }
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ export default function FileArrowLeft ( {
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-file-arrow-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 = 'M14 3v4a1 1 0 0 0 1 1h4' />
24
+ < path d = 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' />
25
+ < path d = 'M15 15h-6' />
26
+ < path d = 'M11.5 17.5l-2.5 -2.5l2.5 -2.5' />
27
+ </ svg >
28
+ ) ;
29
+ }
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ export default function FileArrowRight ( {
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-file-arrow-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 = 'M14 3v4a1 1 0 0 0 1 1h4' />
24
+ < path d = 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' />
25
+ < path d = 'M9 15h6' />
26
+ < path d = 'M12.5 17.5l2.5 -2.5l-2.5 -2.5' />
27
+ </ svg >
28
+ ) ;
29
+ }
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ export default function FileBarcode ( {
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-file-barcode'
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 3v4a1 1 0 0 0 1 1h4' />
24
+ < path d = 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' />
25
+ < path d = 'M8 13h1v3h-1z' />
26
+ < path d = 'M12 13v3' />
27
+ < path d = 'M15 13h1v3h-1z' />
28
+ </ svg >
29
+ ) ;
30
+ }
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ export default function FileChart ( {
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-file-chart'
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 3v4a1 1 0 0 0 1 1h4' />
24
+ < path d = 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' />
25
+ < path d = 'M12 10v4h4' />
26
+ < circle cx = '12' cy = '14' r = '4' />
27
+ </ svg >
28
+ ) ;
29
+ }
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ export default function FileDatabase ( {
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-file-database'
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
+ < ellipse cx = '12' cy = '12.75' rx = '4' ry = '1.75' />
24
+ < path d = 'M8 12.5v3.75c0 .966 1.79 1.75 4 1.75s4 -.784 4 -1.75v-3.75' />
25
+ < path d = 'M14 3v4a1 1 0 0 0 1 1h4' />
26
+ < path d = 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' />
27
+ </ svg >
28
+ ) ;
29
+ }
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ export default function FileDots ( {
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-file-dots'
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 3v4a1 1 0 0 0 1 1h4' />
24
+ < path d = 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' />
25
+ < path d = 'M9 14v.01' />
26
+ < path d = 'M12 14v.01' />
27
+ < path d = 'M15 14v.01' />
28
+ </ svg >
29
+ ) ;
30
+ }
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ export default function FileDownload({
22
22
< path stroke = 'none' d = 'M0 0h24v24H0z' fill = 'none' />
23
23
< path d = 'M14 3v4a1 1 0 0 0 1 1h4' />
24
24
< path d = 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' />
25
- < line x1 = '12' y1 = '11' x2 = '12' y2 = '17 ' />
26
- < polyline points = '9 14 12 17 15 14 ' />
25
+ < path d = 'M12 17v-6 ' />
26
+ < path d = 'M9.5 14.5l2.5 2.5l2.5 -2.5 ' />
27
27
</ svg >
28
28
) ;
29
29
}
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ export default function FilePencil ( {
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-file-pencil'
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 3v4a1 1 0 0 0 1 1h4' />
24
+ < path d = 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' />
25
+ < path d = 'M10 18l5 -5a1.414 1.414 0 0 0 -2 -2l-5 5v2h2z' />
26
+ </ svg >
27
+ ) ;
28
+ }
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ export default function FilePower ( {
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-file-power'
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 3v4a1 1 0 0 0 1 1h4' />
24
+ < path d = 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' />
25
+ < path d = 'M12 11l-2 3h4l-2 3' />
26
+ </ svg >
27
+ ) ;
28
+ }
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ export default function FileRss ( {
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-file-rss'
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 3v4a1 1 0 0 0 1 1h4' />
24
+ < path d = 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' />
25
+ < path d = 'M12 17a3 3 0 0 0 -3 -3' />
26
+ < path d = 'M15 17a6 6 0 0 0 -6 -6' />
27
+ < path d = 'M9 17h.01' />
28
+ </ svg >
29
+ ) ;
30
+ }
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ export default function FileScissors ( {
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-file-scissors'
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 3v4a1 1 0 0 0 1 1h4' />
24
+ < path d = 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' />
25
+ < circle cx = '15' cy = '17' r = '1' />
26
+ < circle cx = '9' cy = '17' r = '1' />
27
+ < path d = 'M9 17l6 -6' />
28
+ < path d = 'M15 17l-6 -6' />
29
+ </ svg >
30
+ ) ;
31
+ }
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ export default function FileSignal ( {
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-file-signal'
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 3v4a1 1 0 0 0 1 1h4' />
24
+ < path d = 'M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z' />
25
+ < path d = 'M12 14v.01' />
26
+ < path d = 'M9.525 11.525a3.5 3.5 0 0 0 0 4.95m4.95 0a3.5 3.5 0 0 0 0 -4.95' />
27
+ </ svg >
28
+ ) ;
29
+ }
You can’t perform that action at this time.
0 commit comments