diff options
Diffstat (limited to 'icons-react')
36 files changed, 281 insertions, 17 deletions
diff --git a/icons-react/icons-js/box-multiple-2.js b/icons-react/icons-js/box-multiple-2.js index 34cfb89e..9a9c292d 100644 --- a/icons-react/icons-js/box-multiple-2.js +++ b/icons-react/icons-js/box-multiple-2.js @@ -6,7 +6,7 @@ function IconBoxMultiple2({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-box-multiple-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" /><rect x={7} y={3} width={14} height={14} rx={2} /><path d="M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2" /><path d="M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 -.001" /></svg>; + return <svg className="icon icon-tabler icon-tabler-box-multiple-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" /><rect x={7} y={3} width={14} height={14} rx={2} /><path d="M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2" /><path d="M12 8a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0" /></svg>; } export default IconBoxMultiple2;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-debian.js b/icons-react/icons-js/brand-debian.js new file mode 100644 index 00000000..5b195340 --- /dev/null +++ b/icons-react/icons-js/brand-debian.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandDebian({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-debian" 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 17c-2.397 -.943 -4 -3.153 -4 -5.635c0 -2.19 1.039 -3.14 1.604 -3.595c2.646 -2.133 6.396 -.27 6.396 3.23c0 2.5 -2.905 2.121 -3.5 1.5c-.595 -.621 -1 -1.5 -.5 -2.5" /><circle cx={12} cy={12} r={9} /></svg>; +} + +export default IconBrandDebian;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-docker.js b/icons-react/icons-js/brand-docker.js index fbe714aa..eeb7d90e 100644 --- a/icons-react/icons-js/brand-docker.js +++ b/icons-react/icons-js/brand-docker.js @@ -6,7 +6,7 @@ function IconBrandDocker({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-brand-docker" 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="M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1.002 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z" /><path d="M5 10h3v3h-3z" /><path d="M8 10h3v3h-3z" /><path d="M11 10h3v3h-3z" /><path d="M8 7h3v3h-3z" /><path d="M11 7h3v3h-3z" /><path d="M11 4h3v3h-3z" /><path d="M4.571 18.001c1.5 0 2.047 -.074 2.958 -.78" /><line x1={10} y1={16} x2={10} y2={16.01} /></svg>; + return <svg className="icon icon-tabler icon-tabler-brand-docker" 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="M22 12.54c-1.804 -.345 -2.701 -1.08 -3.523 -2.94c-.487 .696 -1.102 1.568 -.92 2.4c.028 .238 -.32 1.002 -.557 1h-14c0 5.208 3.164 7 6.196 7c4.124 .022 7.828 -1.376 9.854 -5c1.146 -.101 2.296 -1.505 2.95 -2.46z" /><path d="M5 10h3v3h-3z" /><path d="M8 10h3v3h-3z" /><path d="M11 10h3v3h-3z" /><path d="M8 7h3v3h-3z" /><path d="M11 7h3v3h-3z" /><path d="M11 4h3v3h-3z" /><path d="M4.571 18c1.5 0 2.047 -.074 2.958 -.78" /><line x1={10} y1={16} x2={10} y2={16.01} /></svg>; } export default IconBrandDocker;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-mastercard.js b/icons-react/icons-js/brand-mastercard.js index 29b4e172..c9a58348 100644 --- a/icons-react/icons-js/brand-mastercard.js +++ b/icons-react/icons-js/brand-mastercard.js @@ -6,7 +6,7 @@ function IconBrandMastercard({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-brand-mastercard" 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={14} cy={12} r={3} /><path d="M12.001 9.765a3 3 0 1 0 0 4.47" /><rect x={3} y={5} width={18} height={14} rx={2} /></svg>; + return <svg className="icon icon-tabler icon-tabler-brand-mastercard" 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={14} cy={12} r={3} /><path d="M12 9.765a3 3 0 1 0 0 4.47" /><rect x={3} y={5} width={18} height={14} rx={2} /></svg>; } export default IconBrandMastercard;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-stackoverflow.js b/icons-react/icons-js/brand-stackoverflow.js new file mode 100644 index 00000000..d7ad84ef --- /dev/null +++ b/icons-react/icons-js/brand-stackoverflow.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandStackoverflow({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-stackoverflow" 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="M4 17v1a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-1" /><path d="M8 16h8" /><path d="M8.322 12.582l7.956 .836" /><path d="M8.787 9.168l7.826 1.664" /><path d="M10.096 5.764l7.608 2.472" /></svg>; +} + +export default IconBrandStackoverflow;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-steam.js b/icons-react/icons-js/brand-steam.js index cbaa924b..e8dd4aab 100644 --- a/icons-react/icons-js/brand-steam.js +++ b/icons-react/icons-js/brand-steam.js @@ -6,7 +6,7 @@ function IconBrandSteam({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-brand-steam" 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="M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 2.995l-.176 .005a3.001 3.001 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z" /><circle fill="currentColor" cx={16.5} cy={9.5} r={1} /></svg>; + return <svg className="icon icon-tabler icon-tabler-brand-steam" 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="M16.5 5a4.5 4.5 0 1 1 -.653 8.953l-4.347 3.009l0 .038a3 3 0 0 1 -2.824 2.995l-.176 .005a3 3 0 0 1 -2.94 -2.402l-2.56 -1.098v-3.5l3.51 1.755a2.989 2.989 0 0 1 2.834 -.635l2.727 -3.818a4.5 4.5 0 0 1 4.429 -5.302z" /><circle fill="currentColor" cx={16.5} cy={9.5} r={1} /></svg>; } export default IconBrandSteam;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-ubuntu.js b/icons-react/icons-js/brand-ubuntu.js new file mode 100644 index 00000000..29553ee8 --- /dev/null +++ b/icons-react/icons-js/brand-ubuntu.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandUbuntu({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-brand-ubuntu" 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={5} r={2} /><path d="M17.723 7.41a7.992 7.992 0 0 0 -3.74 -2.162m-3.971 0a7.993 7.993 0 0 0 -3.789 2.216m-1.881 3.215a8 8 0 0 0 -.342 2.32c0 .738 .1 1.453 .287 2.132m1.96 3.428a7.993 7.993 0 0 0 3.759 2.19m3.998 -.003a7.993 7.993 0 0 0 3.747 -2.186m1.962 -3.43a8.008 8.008 0 0 0 .287 -2.131c0 -.764 -.107 -1.503 -.307 -2.203" /><circle cx={5} cy={17} r={2} /><circle cx={19} cy={17} r={2} /></svg>; +} + +export default IconBrandUbuntu;
\ No newline at end of file diff --git a/icons-react/icons-js/checkup-list.js b/icons-react/icons-js/checkup-list.js new file mode 100644 index 00000000..63049163 --- /dev/null +++ b/icons-react/icons-js/checkup-list.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCheckupList({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-checkup-list" 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="M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2" /><rect x={9} y={3} width={6} height={4} rx={2} /><path d="M9 14h.01" /><path d="M9 17h.01" /><path d="M12 16l1 1l3 -3" /></svg>; +} + +export default IconCheckupList;
\ No newline at end of file diff --git a/icons-react/icons-js/circle-2.js b/icons-react/icons-js/circle-2.js index 77a1526d..fd8b66e4 100644 --- a/icons-react/icons-js/circle-2.js +++ b/icons-react/icons-js/circle-2.js @@ -6,7 +6,7 @@ function IconCircle2({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-circle-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="M10 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 -.001" /><circle cx={12} cy={12} r={9} /></svg>; + return <svg className="icon icon-tabler icon-tabler-circle-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="M10 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0" /><circle cx={12} cy={12} r={9} /></svg>; } export default IconCircle2;
\ No newline at end of file diff --git a/icons-react/icons-js/crutches.js b/icons-react/icons-js/crutches.js new file mode 100644 index 00000000..7f848e7e --- /dev/null +++ b/icons-react/icons-js/crutches.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCrutches({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-crutches" 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={8} y={3} width={8} height={4} rx={2} /><path d="M11 21h2" /><path d="M12 21v-4.092a3 3 0 0 1 .504 -1.664l.992 -1.488a3 3 0 0 0 .504 -1.664v-5.092" /><path d="M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-5.092" /><path d="M10 11h4" /></svg>; +} + +export default IconCrutches;
\ No newline at end of file diff --git a/icons-react/icons-js/device-computer-camera-off.js b/icons-react/icons-js/device-computer-camera-off.js index c9f21e33..888f3a11 100644 --- a/icons-react/icons-js/device-computer-camera-off.js +++ b/icons-react/icons-js/device-computer-camera-off.js @@ -6,7 +6,7 @@ function IconDeviceComputerCameraOff({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-device-computer-camera-off" 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.15 6.153a7 7 0 0 0 9.696 9.696m2.003 -2.001a7 7 0 0 0 -9.699 -9.695" /><path d="M9.13 9.122a3 3 0 0 0 3.743 3.749m2.001 -2.009a3 3 0 0 0 -3.737 -3.736" /><path d="M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486" /><line x1={3} y1={3} x2={21} y2={21} /></svg>; + return <svg className="icon icon-tabler icon-tabler-device-computer-camera-off" 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.15 6.153a7 7 0 0 0 9.696 9.696m2 -2a7 7 0 0 0 -9.699 -9.695" /><path d="M9.13 9.122a3 3 0 0 0 3.743 3.749m2 -2a3 3 0 0 0 -3.737 -3.736" /><path d="M8 16l-2.091 3.486a1 1 0 0 0 .857 1.514h10.468a1 1 0 0 0 .857 -1.514l-2.091 -3.486" /><line x1={3} y1={3} x2={21} y2={21} /></svg>; } export default IconDeviceComputerCameraOff;
\ No newline at end of file diff --git a/icons-react/icons-js/dna-2.js b/icons-react/icons-js/dna-2.js new file mode 100644 index 00000000..7bce91c6 --- /dev/null +++ b/icons-react/icons-js/dna-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconDna2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-dna-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="M17 3v1c-.01 3.352 -1.68 6.023 -5.008 8.014c-3.328 1.99 3.336 -2.005 .008 -.014c-3.328 1.99 -4.997 4.662 -5.008 8.014v1" /><path d="M17 21.014v-1c-.01 -3.352 -1.68 -6.023 -5.008 -8.014c-3.328 -1.99 3.336 2.005 .008 .014c-3.328 -1.991 -4.997 -4.662 -5.008 -8.014v-1" /><path d="M7 4h10" /><path d="M7 20h10" /><path d="M8 8h8" /><path d="M8 16h8" /></svg>; +} + +export default IconDna2;
\ No newline at end of file diff --git a/icons-react/icons-js/emergency-bed.js b/icons-react/icons-js/emergency-bed.js new file mode 100644 index 00000000..06b48728 --- /dev/null +++ b/icons-react/icons-js/emergency-bed.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconEmergencyBed({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-emergency-bed" 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={16} cy={18} r={2} /><circle cx={8} cy={18} r={2} /><path d="M4 8l2.1 2.8a3 3 0 0 0 2.4 1.2h11.5" /><path d="M10 6h4" /><path d="M12 4v4" /><path d="M12 12v2l-2.5 2.5" /><path d="M14.5 16.5l-2.5 -2.5" /></svg>; +} + +export default IconEmergencyBed;
\ No newline at end of file diff --git a/icons-react/icons-js/eye-table.js b/icons-react/icons-js/eye-table.js new file mode 100644 index 00000000..f9d8b4e2 --- /dev/null +++ b/icons-react/icons-js/eye-table.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconEyeTable({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-eye-table" 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="M8.003 18.003h-.011" /><path d="M12.003 18.002h-.011" /><path d="M16.003 18.002h-.011" /><path d="M4 3h16" /><path d="M5 3v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1 -1v-17" /><path d="M14 7h-4" /><path d="M9 15h1" /><path d="M14 15h1" /><path d="M12 11v-4" /></svg>; +} + +export default IconEyeTable;
\ No newline at end of file diff --git a/icons-react/icons-js/first-aid-kit.js b/icons-react/icons-js/first-aid-kit.js new file mode 100644 index 00000000..4ecfae37 --- /dev/null +++ b/icons-react/icons-js/first-aid-kit.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFirstAidKit({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-first-aid-kit" 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="M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2" /><rect x={4} y={8} width={16} height={12} rx={2} /><path d="M10 14h4" /><path d="M12 12v4" /></svg>; +} + +export default IconFirstAidKit;
\ No newline at end of file diff --git a/icons-react/icons-js/flask-2.js b/icons-react/icons-js/flask-2.js new file mode 100644 index 00000000..de5d1fd5 --- /dev/null +++ b/icons-react/icons-js/flask-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFlask2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-flask-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="M6.1 15h11.8" /><path d="M14 3v7.342a6.002 6.002 0 0 1 1.318 10.658h-6.635a6.002 6.002 0 0 1 1.317 -10.66v-7.34h4z" /><path d="M9 3h6" /></svg>; +} + +export default IconFlask2;
\ No newline at end of file diff --git a/icons-react/icons-js/glass-full.js b/icons-react/icons-js/glass-full.js index 8512d40a..56459813 100644 --- a/icons-react/icons-js/glass-full.js +++ b/icons-react/icons-js/glass-full.js @@ -6,7 +6,7 @@ function IconGlassFull({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-glass-full" 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" /><line x1={8} y1={21} x2={16} y2={21} /><line x1={12} y1={15} x2={12} y2={21} /><path d="M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z" /><path d="M6 10a5.001 5.001 0 0 1 6 0a5.001 5.001 0 0 0 6 0" /></svg>; + return <svg className="icon icon-tabler icon-tabler-glass-full" 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" /><line x1={8} y1={21} x2={16} y2={21} /><line x1={12} y1={15} x2={12} y2={21} /><path d="M17 3l1 7c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -7h10z" /><path d="M6 10a5 5 0 0 1 6 0a5 5 0 0 0 6 0" /></svg>; } export default IconGlassFull;
\ No newline at end of file diff --git a/icons-react/icons-js/h-2.js b/icons-react/icons-js/h-2.js index 9b0fb63e..0698ff07 100644 --- a/icons-react/icons-js/h-2.js +++ b/icons-react/icons-js/h-2.js @@ -6,7 +6,7 @@ function IconH2({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-h-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="M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 -.001" /><path d="M4 6v12" /><path d="M12 6v12" /><path d="M11 18h2" /><path d="M3 18h2" /><path d="M4 12h8" /><path d="M3 6h2" /><path d="M11 6h2" /></svg>; + return <svg className="icon icon-tabler icon-tabler-h-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="M17 12a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0" /><path d="M4 6v12" /><path d="M12 6v12" /><path d="M11 18h2" /><path d="M3 18h2" /><path d="M4 12h8" /><path d="M3 6h2" /><path d="M11 6h2" /></svg>; } export default IconH2;
\ No newline at end of file diff --git a/icons-react/icons-js/hand-move.js b/icons-react/icons-js/hand-move.js index 29d35f1c..e7ad6881 100644 --- a/icons-react/icons-js/hand-move.js +++ b/icons-react/icons-js/hand-move.js @@ -6,7 +6,7 @@ function IconHandMove({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-hand-move" 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="M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5" /><path d="M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5" /><path d="M14 10.5a1.5 1.5 0 0 1 3 0v1.5" /><path d="M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47" /><path d="M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427" /><path d="M14.001 3.458c1.32 .354 2.558 .902 3.685 1.612" /></svg>; + return <svg className="icon icon-tabler icon-tabler-hand-move" 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="M8 13v-8.5a1.5 1.5 0 0 1 3 0v7.5" /><path d="M11 11.5v-2a1.5 1.5 0 0 1 3 0v2.5" /><path d="M14 10.5a1.5 1.5 0 0 1 3 0v1.5" /><path d="M17 11.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1 -6 6h-2h.208a6 6 0 0 1 -5.012 -2.7l-.196 -.3c-.312 -.479 -1.407 -2.388 -3.286 -5.728a1.5 1.5 0 0 1 .536 -2.022a1.867 1.867 0 0 1 2.28 .28l1.47 1.47" /><path d="M2.541 5.594a13.487 13.487 0 0 1 2.46 -1.427" /><path d="M14 3.458c1.32 .354 2.558 .902 3.685 1.612" /></svg>; } export default IconHandMove;
\ No newline at end of file diff --git a/icons-react/icons-js/heart-rate-monitor.js b/icons-react/icons-js/heart-rate-monitor.js new file mode 100644 index 00000000..2ada16f4 --- /dev/null +++ b/icons-react/icons-js/heart-rate-monitor.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconHeartRateMonitor({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-heart-rate-monitor" 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={3} y={4} width={18} height={12} rx={1} /><path d="M7 20h10" /><path d="M9 16v4" /><path d="M15 16v4" /><path d="M7 10h2l2 3l2 -6l1 3h3" /></svg>; +} + +export default IconHeartRateMonitor;
\ No newline at end of file diff --git a/icons-react/icons-js/ice-cream-2.js b/icons-react/icons-js/ice-cream-2.js index 183e6323..0b7e2cb6 100644 --- a/icons-react/icons-js/ice-cream-2.js +++ b/icons-react/icons-js/ice-cream-2.js @@ -6,7 +6,7 @@ function IconIceCream2({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-ice-cream-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="M17.657 11.004a6 6 0 1 0 -11.315 -.002" /><path d="M6.342 11l5.658 11l5.657 -10.996z" /></svg>; + return <svg className="icon icon-tabler icon-tabler-ice-cream-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="M17.657 11.004a6 6 0 1 0 -11.315 0" /><path d="M6.342 11l5.658 11l5.657 -10.996z" /></svg>; } export default IconIceCream2;
\ No newline at end of file diff --git a/icons-react/icons-js/lungs.js b/icons-react/icons-js/lungs.js new file mode 100644 index 00000000..fc0ca5df --- /dev/null +++ b/icons-react/icons-js/lungs.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconLungs({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-lungs" 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.081 20c1.612 0 2.919 -1.335 2.919 -2.98v-9.763c0 -.694 -.552 -1.257 -1.232 -1.257c-.205 0 -.405 .052 -.584 .15l-.13 .083c-1.46 1.059 -2.432 2.647 -3.404 5.824c-.42 1.37 -.636 2.962 -.648 4.775c-.012 1.675 1.261 3.054 2.877 3.161l.203 .007z" /><path d="M17.92 20c-1.613 0 -2.92 -1.335 -2.92 -2.98v-9.763c0 -.694 .552 -1.257 1.233 -1.257c.204 0 .405 .052 .584 .15l.13 .083c1.46 1.059 2.432 2.647 3.405 5.824c.42 1.37 .636 2.962 .648 4.775c.012 1.675 -1.261 3.054 -2.878 3.161l-.202 .007z" /><path d="M9 12a3 3 0 0 0 3 -3a3 3 0 0 0 3 3" /><path d="M12 4v5" /></svg>; +} + +export default IconLungs;
\ No newline at end of file diff --git a/icons-react/icons-js/medicine-syrup.js b/icons-react/icons-js/medicine-syrup.js new file mode 100644 index 00000000..9a3b949d --- /dev/null +++ b/icons-react/icons-js/medicine-syrup.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMedicineSyrup({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-medicine-syrup" 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="M8 21h8a1 1 0 0 0 1 -1v-10a3 3 0 0 0 -3 -3h-4a3 3 0 0 0 -3 3v10a1 1 0 0 0 1 1z" /><path d="M10 14h4" /><path d="M12 12v4" /><path d="M10 7v-3a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v3" /></svg>; +} + +export default IconMedicineSyrup;
\ No newline at end of file diff --git a/icons-react/icons-js/microscope.js b/icons-react/icons-js/microscope.js new file mode 100644 index 00000000..61d1c964 --- /dev/null +++ b/icons-react/icons-js/microscope.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMicroscope({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-microscope" 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="M5 21h14" /><path d="M6 18h2" /><path d="M7 18v3" /><path d="M9 11l3 3l6 -6l-3 -3z" /><path d="M10.5 12.5l-1.5 1.5" /><path d="M17 3l3 3" /><path d="M12 21a6 6 0 0 0 3.715 -10.712" /></svg>; +} + +export default IconMicroscope;
\ No newline at end of file diff --git a/icons-react/icons-js/multiplier-2x.js b/icons-react/icons-js/multiplier-2x.js index 0c0b870b..6211d120 100644 --- a/icons-react/icons-js/multiplier-2x.js +++ b/icons-react/icons-js/multiplier-2x.js @@ -6,7 +6,7 @@ function IconMultiplier2x({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-multiplier-2x" 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="M14 16l4 -4" /><path d="M18 16l-4 -4" /><path d="M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 -.001" /></svg>; + return <svg className="icon icon-tabler icon-tabler-multiplier-2x" 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="M14 16l4 -4" /><path d="M18 16l-4 -4" /><path d="M6 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0" /></svg>; } export default IconMultiplier2x;
\ No newline at end of file diff --git a/icons-react/icons-js/nurse.js b/icons-react/icons-js/nurse.js new file mode 100644 index 00000000..45c9a658 --- /dev/null +++ b/icons-react/icons-js/nurse.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNurse({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-nurse" 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 6c2.941 0 5.685 .847 8 2.31l-2 9.69h-12l-2 -9.691a14.93 14.93 0 0 1 8 -2.309z" /><path d="M10 12h4" /><path d="M12 10v4" /></svg>; +} + +export default IconNurse;
\ No newline at end of file diff --git a/icons-react/icons-js/pig.js b/icons-react/icons-js/pig.js index b8075250..0fc9fee6 100644 --- a/icons-react/icons-js/pig.js +++ b/icons-react/icons-js/pig.js @@ -6,7 +6,7 @@ function IconPig({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-pig" 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 11v.01" /><path d="M16 3l.001 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l.001 -.027a6 6 0 0 1 3.999 -10.473h2.5l4.5 -3z" /></svg>; + return <svg className="icon icon-tabler icon-tabler-pig" 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 11v.01" /><path d="M16 3l0 3.803a6.019 6.019 0 0 1 2.658 3.197h1.341a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-1.342a6.008 6.008 0 0 1 -1.658 2.473v2.027a1.5 1.5 0 0 1 -3 0v-.583a6.04 6.04 0 0 1 -1 .083h-4a6.04 6.04 0 0 1 -1 -.083v.583a1.5 1.5 0 0 1 -3 0v-2l.001 -.027a6 6 0 0 1 3.999 -10.473h2.5l4.5 -3z" /></svg>; } export default IconPig;
\ No newline at end of file diff --git a/icons-react/icons-js/pills.js b/icons-react/icons-js/pills.js new file mode 100644 index 00000000..df8f9ddd --- /dev/null +++ b/icons-react/icons-js/pills.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPills({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-pills" 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={8} cy={8} r={5} /><circle cx={17} cy={17} r={4} /><path d="M4.5 4.5l7 7" /><path d="M19.5 14.5l-5 5" /></svg>; +} + +export default IconPills;
\ No newline at end of file diff --git a/icons-react/icons-js/square-2.js b/icons-react/icons-js/square-2.js index 2faf36c5..ca4f5419 100644 --- a/icons-react/icons-js/square-2.js +++ b/icons-react/icons-js/square-2.js @@ -6,7 +6,7 @@ function IconSquare2({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-square-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="M10 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 -.001" /><rect x={4} y={4} width={16} height={16} rx={2} /></svg>; + return <svg className="icon icon-tabler icon-tabler-square-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="M10 10a2 2 0 1 1 4 0c0 .591 -.417 1.318 -.816 1.858l-3.184 4.143l4 0" /><rect x={4} y={4} width={16} height={16} rx={2} /></svg>; } export default IconSquare2;
\ No newline at end of file diff --git a/icons-react/icons-js/thermometer.js b/icons-react/icons-js/thermometer.js new file mode 100644 index 00000000..7286ca0d --- /dev/null +++ b/icons-react/icons-js/thermometer.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconThermometer({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-thermometer" 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 5a2.828 2.828 0 0 1 0 4l-8 8h-4v-4l8 -8a2.828 2.828 0 0 1 4 0z" /><path d="M16 7l-1.5 -1.5" /><path d="M13 10l-1.5 -1.5" /><path d="M10 13l-1.5 -1.5" /><path d="M7 17l-3 3" /></svg>; +} + +export default IconThermometer;
\ No newline at end of file diff --git a/icons-react/icons-js/tree.js b/icons-react/icons-js/tree.js index d784ffd5..17288cf9 100644 --- a/icons-react/icons-js/tree.js +++ b/icons-react/icons-js/tree.js @@ -6,7 +6,7 @@ function IconTree({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-tree" 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 13l-2 -2" /><path d="M12 12l2 -2" /><path d="M12 21v-13" /><path d="M9.824 15.995a3 3 0 0 1 -2.743 -3.69a2.998 2.998 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a2.997 2.997 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h.001h-4z" /></svg>; + return <svg className="icon icon-tabler icon-tabler-tree" 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 13l-2 -2" /><path d="M12 12l2 -2" /><path d="M12 21v-13" /><path d="M9.824 15.995a3 3 0 0 1 -2.743 -3.69a2.998 2.998 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a2.997 2.997 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z" /></svg>; } export default IconTree;
\ No newline at end of file diff --git a/icons-react/icons-js/trees.js b/icons-react/icons-js/trees.js index 495019ab..4d7f90a4 100644 --- a/icons-react/icons-js/trees.js +++ b/icons-react/icons-js/trees.js @@ -6,7 +6,7 @@ function IconTrees({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-trees" 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="M16 5l3 3l-2 1l4 4l-3 1l4 4h-9" /><line x1={15} y1={21} x2={15} y2={18} /><path d="M8 13l-2 -2" /><path d="M8 12l2 -2" /><path d="M8 21v-13" /><path d="M5.824 15.995a3 3 0 0 1 -2.743 -3.69a2.998 2.998 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a2.997 2.997 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h.001h-4z" /></svg>; + return <svg className="icon icon-tabler icon-tabler-trees" 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="M16 5l3 3l-2 1l4 4l-3 1l4 4h-9" /><line x1={15} y1={21} x2={15} y2={18} /><path d="M8 13l-2 -2" /><path d="M8 12l2 -2" /><path d="M8 21v-13" /><path d="M5.824 15.995a3 3 0 0 1 -2.743 -3.69a2.998 2.998 0 0 1 .304 -4.833a3 3 0 0 1 4.615 -3.707a3 3 0 0 1 4.614 3.707a2.997 2.997 0 0 1 .305 4.833a3 3 0 0 1 -2.919 3.695h-4z" /></svg>; } export default IconTrees;
\ No newline at end of file diff --git a/icons-react/icons-js/user-circle.js b/icons-react/icons-js/user-circle.js new file mode 100644 index 00000000..a634c8f1 --- /dev/null +++ b/icons-react/icons-js/user-circle.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconUserCircle({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-user-circle" 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} /><circle cx={12} cy={10} r={3} /><path d="M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855" /></svg>; +} + +export default IconUserCircle;
\ No newline at end of file diff --git a/icons-react/icons-js/vaccine-bottle.js b/icons-react/icons-js/vaccine-bottle.js new file mode 100644 index 00000000..8d26a4b4 --- /dev/null +++ b/icons-react/icons-js/vaccine-bottle.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconVaccineBottle({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-vaccine-bottle" 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={9} y={3} width={6} height={3} rx={1} /><path d="M10 6v.98c0 .877 -.634 1.626 -1.5 1.77c-.866 .144 -1.5 .893 -1.5 1.77v8.48a2 2 0 0 0 2 2h6a2 2 0 0 0 2 -2v-8.48c0 -.877 -.634 -1.626 -1.5 -1.77a1.795 1.795 0 0 1 -1.5 -1.77v-.98" /><path d="M7 12h10" /><path d="M7 18h10" /><path d="M11 15h2" /></svg>; +} + +export default IconVaccineBottle;
\ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index 30c1d231..b6ee8367 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -238,6 +238,7 @@ export const IconBrandChrome: TablerIcon; export const IconBrandCodepen: TablerIcon; export const IconBrandCodesandbox: TablerIcon; export const IconBrandCss3: TablerIcon; +export const IconBrandDebian: TablerIcon; export const IconBrandDeviantart: TablerIcon; export const IconBrandDiscord: TablerIcon; export const IconBrandDisqus: TablerIcon; @@ -288,7 +289,7 @@ export const IconBrandSlack: TablerIcon; export const IconBrandSnapchat: TablerIcon; export const IconBrandSoundcloud: TablerIcon; export const IconBrandSpotify: TablerIcon; -export const IconBrandStackOfverflow: TablerIcon; +export const IconBrandStackoverflow: TablerIcon; export const IconBrandSteam: TablerIcon; export const IconBrandStripe: TablerIcon; export const IconBrandTabler: TablerIcon; @@ -300,6 +301,7 @@ export const IconBrandTinder: TablerIcon; export const IconBrandTumblr: TablerIcon; export const IconBrandTwitch: TablerIcon; export const IconBrandTwitter: TablerIcon; +export const IconBrandUbuntu: TablerIcon; export const IconBrandUnsplash: TablerIcon; export const IconBrandVercel: TablerIcon; export const IconBrandVimeo: TablerIcon; @@ -399,6 +401,7 @@ export const IconChartRadar: TablerIcon; export const IconCheck: TablerIcon; export const IconCheckbox: TablerIcon; export const IconChecks: TablerIcon; +export const IconCheckupList: TablerIcon; export const IconCheese: TablerIcon; export const IconChevronDownLeft: TablerIcon; export const IconChevronDownRight: TablerIcon; @@ -498,6 +501,7 @@ export const IconCrop: TablerIcon; export const IconCrosshair: TablerIcon; export const IconCrownOff: TablerIcon; export const IconCrown: TablerIcon; +export const IconCrutches: TablerIcon; export const IconCup: TablerIcon; export const IconCurlyLoop: TablerIcon; export const IconCurrencyBahraini: TablerIcon; @@ -578,6 +582,7 @@ export const IconDisc: TablerIcon; export const IconDiscount2: TablerIcon; export const IconDiscount: TablerIcon; export const IconDivide: TablerIcon; +export const IconDna2: TablerIcon; export const IconDna: TablerIcon; export const IconDogBowl: TablerIcon; export const IconDoorEnter: TablerIcon; @@ -604,6 +609,7 @@ export const IconEar: TablerIcon; export const IconEditCircle: TablerIcon; export const IconEdit: TablerIcon; export const IconEgg: TablerIcon; +export const IconEmergencyBed: TablerIcon; export const IconEmphasis: TablerIcon; export const IconEqualNot: TablerIcon; export const IconEqual: TablerIcon; @@ -613,6 +619,7 @@ export const IconExposure: TablerIcon; export const IconExternalLink: TablerIcon; export const IconEyeCheck: TablerIcon; export const IconEyeOff: TablerIcon; +export const IconEyeTable: TablerIcon; export const IconEye: TablerIcon; export const IconEyeglass2: TablerIcon; export const IconEyeglass: TablerIcon; @@ -655,12 +662,14 @@ export const IconFilterOff: TablerIcon; export const IconFilter: TablerIcon; export const IconFingerprint: TablerIcon; export const IconFiretruck: TablerIcon; +export const IconFirstAidKit: TablerIcon; export const IconFish: TablerIcon; export const IconFlag2: TablerIcon; export const IconFlag3: TablerIcon; export const IconFlag: TablerIcon; export const IconFlame: TablerIcon; export const IconFlare: TablerIcon; +export const IconFlask2: TablerIcon; export const IconFlask: TablerIcon; export const IconFlipHorizontal: TablerIcon; export const IconFlipVertical: TablerIcon; @@ -731,6 +740,7 @@ export const IconHeadphonesOff: TablerIcon; export const IconHeadphones: TablerIcon; export const IconHeadset: TablerIcon; export const IconHeartBroken: TablerIcon; +export const IconHeartRateMonitor: TablerIcon; export const IconHeart: TablerIcon; export const IconHelicopterLanding: TablerIcon; export const IconHelicopter: TablerIcon; @@ -846,6 +856,7 @@ export const IconLockSquare: TablerIcon; export const IconLock: TablerIcon; export const IconLogin: TablerIcon; export const IconLogout: TablerIcon; +export const IconLungs: TablerIcon; export const IconMacro: TablerIcon; export const IconMagnet: TablerIcon; export const IconMailForward: TablerIcon; @@ -873,6 +884,7 @@ export const IconMaximize: TablerIcon; export const IconMeat: TablerIcon; export const IconMedal: TablerIcon; export const IconMedicalCross: TablerIcon; +export const IconMedicineSyrup: TablerIcon; export const IconMenu2: TablerIcon; export const IconMenu: TablerIcon; export const IconMessage2: TablerIcon; @@ -889,6 +901,7 @@ export const IconMessages: TablerIcon; export const IconMicrophone2: TablerIcon; export const IconMicrophoneOff: TablerIcon; export const IconMicrophone: TablerIcon; +export const IconMicroscope: TablerIcon; export const IconMilk: TablerIcon; export const IconMinimize: TablerIcon; export const IconMinusVertical: TablerIcon; @@ -937,6 +950,7 @@ export const IconNumber6: TablerIcon; export const IconNumber7: TablerIcon; export const IconNumber8: TablerIcon; export const IconNumber9: TablerIcon; +export const IconNurse: TablerIcon; export const IconOctagonOff: TablerIcon; export const IconOctagon: TablerIcon; export const IconOld: TablerIcon; @@ -979,6 +993,7 @@ export const IconPictureInPictureOn: TablerIcon; export const IconPictureInPicture: TablerIcon; export const IconPig: TablerIcon; export const IconPill: TablerIcon; +export const IconPills: TablerIcon; export const IconPin: TablerIcon; export const IconPinnedOff: TablerIcon; export const IconPinned: TablerIcon; @@ -1219,6 +1234,7 @@ export const IconTextDirectionLtr: TablerIcon; export const IconTextDirectionRtl: TablerIcon; export const IconTextWrapDisabled: TablerIcon; export const IconTextWrap: TablerIcon; +export const IconThermometer: TablerIcon; export const IconThumbDown: TablerIcon; export const IconThumbUp: TablerIcon; export const IconTicket: TablerIcon; @@ -1266,6 +1282,7 @@ export const IconUnlink: TablerIcon; export const IconUpload: TablerIcon; export const IconUrgent: TablerIcon; export const IconUserCheck: TablerIcon; +export const IconUserCircle: TablerIcon; export const IconUserExclamation: TablerIcon; export const IconUserMinus: TablerIcon; export const IconUserOff: TablerIcon; @@ -1273,6 +1290,7 @@ export const IconUserPlus: TablerIcon; export const IconUserX: TablerIcon; export const IconUser: TablerIcon; export const IconUsers: TablerIcon; +export const IconVaccineBottle: TablerIcon; export const IconVaccine: TablerIcon; export const IconVariable: TablerIcon; export const IconVectorBeizer2: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index 3047450c..75cd0c2f 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -232,6 +232,7 @@ export { default as IconBrandChrome } from './icons-js/brand-chrome.js'; export { default as IconBrandCodepen } from './icons-js/brand-codepen.js'; export { default as IconBrandCodesandbox } from './icons-js/brand-codesandbox.js'; export { default as IconBrandCss3 } from './icons-js/brand-css3.js'; +export { default as IconBrandDebian } from './icons-js/brand-debian.js'; export { default as IconBrandDeviantart } from './icons-js/brand-deviantart.js'; export { default as IconBrandDiscord } from './icons-js/brand-discord.js'; export { default as IconBrandDisqus } from './icons-js/brand-disqus.js'; @@ -282,7 +283,7 @@ export { default as IconBrandSlack } from './icons-js/brand-slack.js'; export { default as IconBrandSnapchat } from './icons-js/brand-snapchat.js'; export { default as IconBrandSoundcloud } from './icons-js/brand-soundcloud.js'; export { default as IconBrandSpotify } from './icons-js/brand-spotify.js'; -export { default as IconBrandStackOfverflow } from './icons-js/brand-stack-ofverflow.js'; +export { default as IconBrandStackoverflow } from './icons-js/brand-stackoverflow.js'; export { default as IconBrandSteam } from './icons-js/brand-steam.js'; export { default as IconBrandStripe } from './icons-js/brand-stripe.js'; export { default as IconBrandTabler } from './icons-js/brand-tabler.js'; @@ -294,6 +295,7 @@ export { default as IconBrandTinder } from './icons-js/brand-tinder.js'; export { default as IconBrandTumblr } from './icons-js/brand-tumblr.js'; export { default as IconBrandTwitch } from './icons-js/brand-twitch.js'; export { default as IconBrandTwitter } from './icons-js/brand-twitter.js'; +export { default as IconBrandUbuntu } from './icons-js/brand-ubuntu.js'; export { default as IconBrandUnsplash } from './icons-js/brand-unsplash.js'; export { default as IconBrandVercel } from './icons-js/brand-vercel.js'; export { default as IconBrandVimeo } from './icons-js/brand-vimeo.js'; @@ -393,6 +395,7 @@ export { default as IconChartRadar } from './icons-js/chart-radar.js'; export { default as IconCheck } from './icons-js/check.js'; export { default as IconCheckbox } from './icons-js/checkbox.js'; export { default as IconChecks } from './icons-js/checks.js'; +export { default as IconCheckupList } from './icons-js/checkup-list.js'; export { default as IconCheese } from './icons-js/cheese.js'; export { default as IconChevronDownLeft } from './icons-js/chevron-down-left.js'; export { default as IconChevronDownRight } from './icons-js/chevron-down-right.js'; @@ -492,6 +495,7 @@ export { default as IconCrop } from './icons-js/crop.js'; export { default as IconCrosshair } from './icons-js/crosshair.js'; export { default as IconCrownOff } from './icons-js/crown-off.js'; export { default as IconCrown } from './icons-js/crown.js'; +export { default as IconCrutches } from './icons-js/crutches.js'; export { default as IconCup } from './icons-js/cup.js'; export { default as IconCurlyLoop } from './icons-js/curly-loop.js'; export { default as IconCurrencyBahraini } from './icons-js/currency-bahraini.js'; @@ -572,6 +576,7 @@ export { default as IconDisc } from './icons-js/disc.js'; export { default as IconDiscount2 } from './icons-js/discount-2.js'; export { default as IconDiscount } from './icons-js/discount.js'; export { default as IconDivide } from './icons-js/divide.js'; +export { default as IconDna2 } from './icons-js/dna-2.js'; export { default as IconDna } from './icons-js/dna.js'; export { default as IconDogBowl } from './icons-js/dog-bowl.js'; export { default as IconDoorEnter } from './icons-js/door-enter.js'; @@ -598,6 +603,7 @@ export { default as IconEar } from './icons-js/ear.js'; export { default as IconEditCircle } from './icons-js/edit-circle.js'; export { default as IconEdit } from './icons-js/edit.js'; export { default as IconEgg } from './icons-js/egg.js'; +export { default as IconEmergencyBed } from './icons-js/emergency-bed.js'; export { default as IconEmphasis } from './icons-js/emphasis.js'; export { default as IconEqualNot } from './icons-js/equal-not.js'; export { default as IconEqual } from './icons-js/equal.js'; @@ -607,6 +613,7 @@ export { default as IconExposure } from './icons-js/exposure.js'; export { default as IconExternalLink } from './icons-js/external-link.js'; export { default as IconEyeCheck } from './icons-js/eye-check.js'; export { default as IconEyeOff } from './icons-js/eye-off.js'; +export { default as IconEyeTable } from './icons-js/eye-table.js'; export { default as IconEye } from './icons-js/eye.js'; export { default as IconEyeglass2 } from './icons-js/eyeglass-2.js'; export { default as IconEyeglass } from './icons-js/eyeglass.js'; @@ -649,12 +656,14 @@ export { default as IconFilterOff } from './icons-js/filter-off.js'; export { default as IconFilter } from './icons-js/filter.js'; export { default as IconFingerprint } from './icons-js/fingerprint.js'; export { default as IconFiretruck } from './icons-js/firetruck.js'; +export { default as IconFirstAidKit } from './icons-js/first-aid-kit.js'; export { default as IconFish } from './icons-js/fish.js'; export { default as IconFlag2 } from './icons-js/flag-2.js'; export { default as IconFlag3 } from './icons-js/flag-3.js'; export { default as IconFlag } from './icons-js/flag.js'; export { default as IconFlame } from './icons-js/flame.js'; export { default as IconFlare } from './icons-js/flare.js'; +export { default as IconFlask2 } from './icons-js/flask-2.js'; export { default as IconFlask } from './icons-js/flask.js'; export { default as IconFlipHorizontal } from './icons-js/flip-horizontal.js'; export { default as IconFlipVertical } from './icons-js/flip-vertical.js'; @@ -725,6 +734,7 @@ export { default as IconHeadphonesOff } from './icons-js/headphones-off.js'; export { default as IconHeadphones } from './icons-js/headphones.js'; export { default as IconHeadset } from './icons-js/headset.js'; export { default as IconHeartBroken } from './icons-js/heart-broken.js'; +export { default as IconHeartRateMonitor } from './icons-js/heart-rate-monitor.js'; export { default as IconHeart } from './icons-js/heart.js'; export { default as IconHelicopterLanding } from './icons-js/helicopter-landing.js'; export { default as IconHelicopter } from './icons-js/helicopter.js'; @@ -840,6 +850,7 @@ export { default as IconLockSquare } from './icons-js/lock-square.js'; export { default as IconLock } from './icons-js/lock.js'; export { default as IconLogin } from './icons-js/login.js'; export { default as IconLogout } from './icons-js/logout.js'; +export { default as IconLungs } from './icons-js/lungs.js'; export { default as IconMacro } from './icons-js/macro.js'; export { default as IconMagnet } from './icons-js/magnet.js'; export { default as IconMailForward } from './icons-js/mail-forward.js'; @@ -867,6 +878,7 @@ export { default as IconMaximize } from './icons-js/maximize.js'; export { default as IconMeat } from './icons-js/meat.js'; export { default as IconMedal } from './icons-js/medal.js'; export { default as IconMedicalCross } from './icons-js/medical-cross.js'; +export { default as IconMedicineSyrup } from './icons-js/medicine-syrup.js'; export { default as IconMenu2 } from './icons-js/menu-2.js'; export { default as IconMenu } from './icons-js/menu.js'; export { default as IconMessage2 } from './icons-js/message-2.js'; @@ -883,6 +895,7 @@ export { default as IconMessages } from './icons-js/messages.js'; export { default as IconMicrophone2 } from './icons-js/microphone-2.js'; export { default as IconMicrophoneOff } from './icons-js/microphone-off.js'; export { default as IconMicrophone } from './icons-js/microphone.js'; +export { default as IconMicroscope } from './icons-js/microscope.js'; export { default as IconMilk } from './icons-js/milk.js'; export { default as IconMinimize } from './icons-js/minimize.js'; export { default as IconMinusVertical } from './icons-js/minus-vertical.js'; @@ -931,6 +944,7 @@ export { default as IconNumber6 } from './icons-js/number-6.js'; export { default as IconNumber7 } from './icons-js/number-7.js'; export { default as IconNumber8 } from './icons-js/number-8.js'; export { default as IconNumber9 } from './icons-js/number-9.js'; +export { default as IconNurse } from './icons-js/nurse.js'; export { default as IconOctagonOff } from './icons-js/octagon-off.js'; export { default as IconOctagon } from './icons-js/octagon.js'; export { default as IconOld } from './icons-js/old.js'; @@ -973,6 +987,7 @@ export { default as IconPictureInPictureOn } from './icons-js/picture-in-picture export { default as IconPictureInPicture } from './icons-js/picture-in-picture.js'; export { default as IconPig } from './icons-js/pig.js'; export { default as IconPill } from './icons-js/pill.js'; +export { default as IconPills } from './icons-js/pills.js'; export { default as IconPin } from './icons-js/pin.js'; export { default as IconPinnedOff } from './icons-js/pinned-off.js'; export { default as IconPinned } from './icons-js/pinned.js'; @@ -1213,6 +1228,7 @@ export { default as IconTextDirectionLtr } from './icons-js/text-direction-ltr.j export { default as IconTextDirectionRtl } from './icons-js/text-direction-rtl.js'; export { default as IconTextWrapDisabled } from './icons-js/text-wrap-disabled.js'; export { default as IconTextWrap } from './icons-js/text-wrap.js'; +export { default as IconThermometer } from './icons-js/thermometer.js'; export { default as IconThumbDown } from './icons-js/thumb-down.js'; export { default as IconThumbUp } from './icons-js/thumb-up.js'; export { default as IconTicket } from './icons-js/ticket.js'; @@ -1260,6 +1276,7 @@ export { default as IconUnlink } from './icons-js/unlink.js'; export { default as IconUpload } from './icons-js/upload.js'; export { default as IconUrgent } from './icons-js/urgent.js'; export { default as IconUserCheck } from './icons-js/user-check.js'; +export { default as IconUserCircle } from './icons-js/user-circle.js'; export { default as IconUserExclamation } from './icons-js/user-exclamation.js'; export { default as IconUserMinus } from './icons-js/user-minus.js'; export { default as IconUserOff } from './icons-js/user-off.js'; @@ -1267,6 +1284,7 @@ export { default as IconUserPlus } from './icons-js/user-plus.js'; export { default as IconUserX } from './icons-js/user-x.js'; export { default as IconUser } from './icons-js/user.js'; export { default as IconUsers } from './icons-js/users.js'; +export { default as IconVaccineBottle } from './icons-js/vaccine-bottle.js'; export { default as IconVaccine } from './icons-js/vaccine.js'; export { default as IconVariable } from './icons-js/variable.js'; export { default as IconVectorBeizer2 } from './icons-js/vector-beizer-2.js'; |