diff options
author | codecalm <codecalm@gmail.com> | 2021-12-09 00:40:08 +0100 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2021-12-09 00:40:08 +0100 |
commit | ec3a208734552985feed6255c17053b2c6204c79 (patch) | |
tree | 1a7657d0e857885f5ade96f32aca8769c71abe39 /icons-react/icons-js | |
parent | Fixed icons: `stack-2`, `stack` (diff) | |
download | tabler-icons-ec3a208734552985feed6255c17053b2c6204c79.tar.xz |
Release 1.47.0v1.47.0
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r-- | icons-react/icons-js/blur.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/brand-nytimes.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/cpu.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/cross.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/gavel.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/hammer.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/heartbeat.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/hourglass.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/layout-board-split.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/layout-board.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-nervous.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mountain.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/plane-inflight.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/prescription.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/shield-checkered.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/shield-chevron.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/sleigh.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/stack-2.js | 2 | ||||
-rw-r--r-- | icons-react/icons-js/stack-3.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/stack.js | 2 |
20 files changed, 218 insertions, 2 deletions
diff --git a/icons-react/icons-js/blur.js b/icons-react/icons-js/blur.js new file mode 100644 index 00000000..85f6384c --- /dev/null +++ b/icons-react/icons-js/blur.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBlur({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-blur" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 21a9.01 9.01 0 0 0 2.32 -.302a9.004 9.004 0 0 0 1.74 -16.733a9 9 0 1 0 -4.06 17.035z" /><path d="M12 3v17" /><path d="M12 12h9" /><path d="M12 9h8" /><path d="M12 6h6" /><path d="M12 18h6" /><path d="M12 15h8" /></svg>; +} + +export default IconBlur;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-nytimes.js b/icons-react/icons-js/brand-nytimes.js new file mode 100644 index 00000000..94b50c10 --- /dev/null +++ b/icons-react/icons-js/brand-nytimes.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandNytimes({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-nytimes" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M11.036 5.058a8.001 8.001 0 1 0 8.706 9.965" /><path d="M12 21v-11l-7.5 4" /><path d="M17.5 3a2.5 2.5 0 1 1 0 5l-11 -5a2.5 2.5 0 0 0 -.67 4.91" /><path d="M9 12v8" /><path d="M16 13h-.01" /></svg>; +} + +export default IconBrandNytimes;
\ No newline at end of file diff --git a/icons-react/icons-js/cpu.js b/icons-react/icons-js/cpu.js new file mode 100644 index 00000000..2c25e5bc --- /dev/null +++ b/icons-react/icons-js/cpu.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCpu({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-cpu" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><rect x={5} y={5} width={14} height={14} rx={1} /><path d="M9 9h6v6h-6z" /><path d="M3 10h2" /><path d="M3 14h2" /><path d="M10 3v2" /><path d="M14 3v2" /><path d="M21 10h-2" /><path d="M21 14h-2" /><path d="M14 21v-2" /><path d="M10 21v-2" /></svg>; +} + +export default IconCpu;
\ No newline at end of file diff --git a/icons-react/icons-js/cross.js b/icons-react/icons-js/cross.js new file mode 100644 index 00000000..c8437262 --- /dev/null +++ b/icons-react/icons-js/cross.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCross({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-cross" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M10 21h4v-9h5v-4h-5v-5h-4v5h-5v4h5z" /></svg>; +} + +export default IconCross;
\ No newline at end of file diff --git a/icons-react/icons-js/gavel.js b/icons-react/icons-js/gavel.js new file mode 100644 index 00000000..5f94fc0d --- /dev/null +++ b/icons-react/icons-js/gavel.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconGavel({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-gavel" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385" /><path d="M6 9l4 4" /><path d="M13 10l-4 -4" /><path d="M3 21h7" /><path d="M6.793 15.793l-3.586 -3.586a1 1 0 0 1 0 -1.414l2.293 -2.293l.5 .5l3 -3l-.5 -.5l2.293 -2.293a1 1 0 0 1 1.414 0l3.586 3.586a1 1 0 0 1 0 1.414l-2.293 2.293l-.5 -.5l-3 3l.5 .5l-2.293 2.293a1 1 0 0 1 -1.414 0z" /></svg>; +} + +export default IconGavel;
\ No newline at end of file diff --git a/icons-react/icons-js/hammer.js b/icons-react/icons-js/hammer.js new file mode 100644 index 00000000..33b8a89b --- /dev/null +++ b/icons-react/icons-js/hammer.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconHammer({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-hammer" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M13 10l7.383 7.418c.823 .82 .823 2.148 0 2.967a2.11 2.11 0 0 1 -2.976 0l-7.407 -7.385" /><path d="M6.293 15.293l-2.586 -2.586a1 1 0 0 1 0 -1.414l7.586 -7.586a1 1 0 0 1 1.414 0l2.586 2.586a1 1 0 0 1 0 1.414l-7.586 7.586a1 1 0 0 1 -1.414 0z" /></svg>; +} + +export default IconHammer;
\ No newline at end of file diff --git a/icons-react/icons-js/heartbeat.js b/icons-react/icons-js/heartbeat.js new file mode 100644 index 00000000..3c5a66aa --- /dev/null +++ b/icons-react/icons-js/heartbeat.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconHeartbeat({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-heartbeat" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M19.5 13.572l-7.5 7.428l-2.896 -2.868m-6.117 -8.104a5 5 0 0 1 9.013 -3.022a5 5 0 1 1 7.5 6.572" /><path d="M3 13h2l2 3l2 -6l1 3h3" /></svg>; +} + +export default IconHeartbeat;
\ No newline at end of file diff --git a/icons-react/icons-js/hourglass.js b/icons-react/icons-js/hourglass.js new file mode 100644 index 00000000..4d4a86bf --- /dev/null +++ b/icons-react/icons-js/hourglass.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconHourglass({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-hourglass" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M6.5 7h11" /><path d="M6.5 17h11" /><path d="M6 20v-2a6 6 0 1 1 12 0v2a1 1 0 0 1 -1 1h-10a1 1 0 0 1 -1 -1z" /><path d="M6 4v2a6 6 0 1 0 12 0v-2a1 1 0 0 0 -1 -1h-10a1 1 0 0 0 -1 1z" /></svg>; +} + +export default IconHourglass;
\ No newline at end of file diff --git a/icons-react/icons-js/layout-board-split.js b/icons-react/icons-js/layout-board-split.js new file mode 100644 index 00000000..af3f7b7a --- /dev/null +++ b/icons-react/icons-js/layout-board-split.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutBoardSplit({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-layout-board-split" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><rect x={4} y={4} width={16} height={16} rx={2} /><path d="M4 12h8" /><path d="M12 15h8" /><path d="M12 9h8" /><path d="M12 4v16" /></svg>; +} + +export default IconLayoutBoardSplit;
\ No newline at end of file diff --git a/icons-react/icons-js/layout-board.js b/icons-react/icons-js/layout-board.js new file mode 100644 index 00000000..6230b89c --- /dev/null +++ b/icons-react/icons-js/layout-board.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLayoutBoard({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-layout-board" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><rect x={4} y={4} width={16} height={16} rx={2} /><path d="M4 9h8" /><path d="M12 15h8" /><path d="M12 4v16" /></svg>; +} + +export default IconLayoutBoard;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-nervous.js b/icons-react/icons-js/mood-nervous.js new file mode 100644 index 00000000..97e1c1fa --- /dev/null +++ b/icons-react/icons-js/mood-nervous.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodNervous({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-mood-nervous" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><circle cx={12} cy={12} r={9} /><path d="M9 10h.01" /><path d="M15 10h.01" /><path d="M8 16l2 -2l2 2l2 -2l2 2" /></svg>; +} + +export default IconMoodNervous;
\ No newline at end of file diff --git a/icons-react/icons-js/mountain.js b/icons-react/icons-js/mountain.js new file mode 100644 index 00000000..51561454 --- /dev/null +++ b/icons-react/icons-js/mountain.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMountain({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-mountain" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M3 20h18l-6.921 -14.612a2.3 2.3 0 0 0 -4.158 0l-6.921 14.612z" /><path d="M7.5 11l2 2.5l2.5 -2.5l2 3l2.5 -2" /></svg>; +} + +export default IconMountain;
\ No newline at end of file diff --git a/icons-react/icons-js/plane-inflight.js b/icons-react/icons-js/plane-inflight.js new file mode 100644 index 00000000..50d760cc --- /dev/null +++ b/icons-react/icons-js/plane-inflight.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPlaneInflight({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-plane-inflight" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z" /><path d="M3 21h18" /></svg>; +} + +export default IconPlaneInflight;
\ No newline at end of file diff --git a/icons-react/icons-js/prescription.js b/icons-react/icons-js/prescription.js new file mode 100644 index 00000000..ee9c773a --- /dev/null +++ b/icons-react/icons-js/prescription.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPrescription({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-prescription" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M6 19v-16h4.5a4.5 4.5 0 1 1 0 9h-4.5" /><path d="M19 21l-9 -9" /><path d="M13 21l6 -6" /></svg>; +} + +export default IconPrescription;
\ No newline at end of file diff --git a/icons-react/icons-js/shield-checkered.js b/icons-react/icons-js/shield-checkered.js new file mode 100644 index 00000000..288382b1 --- /dev/null +++ b/icons-react/icons-js/shield-checkered.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconShieldCheckered({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-shield-checkered" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3" /><path d="M12 3v18" /><path d="M3.5 12h17" /></svg>; +} + +export default IconShieldCheckered;
\ No newline at end of file diff --git a/icons-react/icons-js/shield-chevron.js b/icons-react/icons-js/shield-chevron.js new file mode 100644 index 00000000..b85a05f7 --- /dev/null +++ b/icons-react/icons-js/shield-chevron.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconShieldChevron({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-shield-chevron" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 3a12 12 0 0 0 8.5 3a12 12 0 0 1 -8.5 15a12 12 0 0 1 -8.5 -15a12 12 0 0 0 8.5 -3" /><path d="M4 14l8 -3l8 3" /></svg>; +} + +export default IconShieldChevron;
\ No newline at end of file diff --git a/icons-react/icons-js/sleigh.js b/icons-react/icons-js/sleigh.js new file mode 100644 index 00000000..e3f97d6b --- /dev/null +++ b/icons-react/icons-js/sleigh.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconSleigh({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-sleigh" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M3 19h15a4 4 0 0 0 4 -4" /><path d="M16 15h-9a4 4 0 0 1 -4 -4v-6l1.243 1.243a6 6 0 0 0 4.242 1.757h3.515v2a2 2 0 0 0 2 2h.5a1.5 1.5 0 0 0 1.5 -1.5a1.5 1.5 0 0 1 3 0v1.5a3 3 0 0 1 -3 3z" /><path d="M15 15v4" /><path d="M7 15v4" /></svg>; +} + +export default IconSleigh;
\ No newline at end of file diff --git a/icons-react/icons-js/stack-2.js b/icons-react/icons-js/stack-2.js index fcc71508..ee020fcd 100644 --- a/icons-react/icons-js/stack-2.js +++ b/icons-react/icons-js/stack-2.js @@ -6,7 +6,7 @@ function IconStack2({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-stack-2" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 6l-8 4l8 4l8 -4l-8 -4" /><path d="M4 14l8 4l8 -4" /></svg>; + return <svg className="icon icon-tabler icon-tabler-stack-2" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><polyline points="12 4 4 8 12 12 20 8 12 4" /><polyline points="4 12 12 16 20 12" /><polyline points="4 16 12 20 20 16" /></svg>; } export default IconStack2;
\ No newline at end of file diff --git a/icons-react/icons-js/stack-3.js b/icons-react/icons-js/stack-3.js new file mode 100644 index 00000000..47ba8ad8 --- /dev/null +++ b/icons-react/icons-js/stack-3.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconStack3({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-stack-3" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 2l-8 4l8 4l8 -4l-8 -4" /><path d="M4 10l8 4l8 -4" /><path d="M4 18l8 4l8 -4" /><path d="M4 14l8 4l8 -4" /></svg>; +} + +export default IconStack3;
\ No newline at end of file diff --git a/icons-react/icons-js/stack.js b/icons-react/icons-js/stack.js index d6c14dba..351695ec 100644 --- a/icons-react/icons-js/stack.js +++ b/icons-react/icons-js/stack.js @@ -6,7 +6,7 @@ function IconStack({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-stack" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><polyline points="12 4 4 8 12 12 20 8 12 4" /><polyline points="4 12 12 16 20 12" /><polyline points="4 16 12 20 20 16" /></svg>; + return <svg className="icon icon-tabler icon-tabler-stack" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 6l-8 4l8 4l8 -4l-8 -4" /><path d="M4 14l8 4l8 -4" /></svg>; } export default IconStack;
\ No newline at end of file |