aboutsummaryrefslogtreecommitdiff
path: root/icons-react
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2020-09-29 01:06:47 +0200
committercodecalm <codecalm@gmail.com>2020-09-29 01:06:47 +0200
commit5053beccea86852a4ffeec2392fbed6756e4f817 (patch)
tree4247088dd892f13765a11e1a40f960a5b8ebf87b /icons-react
parentpackage-json fix (diff)
downloadtabler-icons-5053beccea86852a4ffeec2392fbed6756e4f817.tar.xz
Release 1.29.0v1.29.0
Diffstat (limited to 'icons-react')
-rw-r--r--icons-react/icons-js/file-certificate.js5
-rw-r--r--icons-react/icons-js/file-zip.js5
-rw-r--r--icons-react/icons-js/flame.js2
-rw-r--r--icons-react/icons-js/leaf.js5
-rw-r--r--icons-react/icons-js/plant.js5
-rw-r--r--icons-react/icons-js/seeding.js5
-rw-r--r--icons-react/icons-js/versions.js5
-rw-r--r--icons-react/index.d.ts6
-rw-r--r--icons-react/index.js6
9 files changed, 43 insertions, 1 deletions
diff --git a/icons-react/icons-js/file-certificate.js b/icons-react/icons-js/file-certificate.js
new file mode 100644
index 0000000..a7f1065
--- /dev/null
+++ b/icons-react/icons-js/file-certificate.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconFileCertificate = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-file-certificate" 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 3v4a1 1 0 0 0 1 1h4" /><path d="M6 8v-3a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-5" /><circle cx={7} cy={14} r={3} /><path d="M5.5 17l-1.5 5l3 -1.5l3 1.5l-1.5 -5" /></svg>;
+
+export default IconFileCertificate; \ No newline at end of file
diff --git a/icons-react/icons-js/file-zip.js b/icons-react/icons-js/file-zip.js
new file mode 100644
index 0000000..5046938
--- /dev/null
+++ b/icons-react/icons-js/file-zip.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconFileZip = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-file-zip" 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 20.735a2 2 0 0 1 -1 -1.735v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-1" /><path d="M11 17a2 2 0 0 1 2 2v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-2a2 2 0 0 1 2 -2z" /><line x1={11} y1={5} x2={10} y2={5} /><line x1={13} y1={7} x2={12} y2={7} /><line x1={11} y1={9} x2={10} y2={9} /><line x1={13} y1={11} x2={12} y2={11} /><line x1={11} y1={13} x2={10} y2={13} /><line x1={13} y1={15} x2={12} y2={15} /></svg>;
+
+export default IconFileZip; \ No newline at end of file
diff --git a/icons-react/icons-js/flame.js b/icons-react/icons-js/flame.js
index 2fdd52b..3134df9 100644
--- a/icons-react/icons-js/flame.js
+++ b/icons-react/icons-js/flame.js
@@ -1,5 +1,5 @@
import * as React from "react";
-const IconFlame = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-flame" 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="M18 15a6 6 0 1 1 -10.853 -3.529c1.926-2.338 4.763-3.327 3.848-8.47 2.355 1.761 5.84 5.38 2.022 9.406-1.136 1.091-.244 2.767 1.221 2.593.882-.105 2.023-.966 3.23-2.3.532.68.532 1.717.532 2.3z" /></svg>;
+const IconFlame = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-flame" 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 12c2 -2.96 0 -7 -1 -8c0 3.038 -1.762 4.383 -2.989 5.642c-1.226 1.26 -2.011 2.598 -2.011 4.358a6 6 0 1 0 12 0c0 -1.532 -.77 -2.94 -1.714 -4c-1.786 3 -3.077 3 -4.286 2z" /></svg>;
export default IconFlame; \ No newline at end of file
diff --git a/icons-react/icons-js/leaf.js b/icons-react/icons-js/leaf.js
new file mode 100644
index 0000000..833e01a
--- /dev/null
+++ b/icons-react/icons-js/leaf.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconLeaf = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-leaf" 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 21c.5 -4.5 2.5 -8 7 -10" /><path d="M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 1 0 3 2 5h3z" /></svg>;
+
+export default IconLeaf; \ No newline at end of file
diff --git a/icons-react/icons-js/plant.js b/icons-react/icons-js/plant.js
new file mode 100644
index 0000000..9f485fe
--- /dev/null
+++ b/icons-react/icons-js/plant.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconPlant = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-plant" 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="M7 15h10v4a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-4z" /><path d="M12 9a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3" /><path d="M12 11a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3" /><line x1={12} y1={15} x2={12} y2={9} /></svg>;
+
+export default IconPlant; \ No newline at end of file
diff --git a/icons-react/icons-js/seeding.js b/icons-react/icons-js/seeding.js
new file mode 100644
index 0000000..0d8a782
--- /dev/null
+++ b/icons-react/icons-js/seeding.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconSeeding = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-seeding" 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 10a6 6 0 0 0 -6 -6h-3v2a6 6 0 0 0 6 6h3" /><path d="M12 14a6 6 0 0 1 6 -6h3v1a6 6 0 0 1 -6 6h-3" /><line x1={12} y1={20} x2={12} y2={10} /></svg>;
+
+export default IconSeeding; \ No newline at end of file
diff --git a/icons-react/icons-js/versions.js b/icons-react/icons-js/versions.js
new file mode 100644
index 0000000..643d499
--- /dev/null
+++ b/icons-react/icons-js/versions.js
@@ -0,0 +1,5 @@
+import * as React from "react";
+
+const IconVersions = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-versions" 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={10} y={5} width={10} height={14} rx={2} /><line x1={7} y1={7} x2={7} y2={17} /><line x1={4} y1={8} x2={4} y2={16} /></svg>;
+
+export default IconVersions; \ No newline at end of file
diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts
index 74cf188..8f73af5 100644
--- a/icons-react/index.d.ts
+++ b/icons-react/index.d.ts
@@ -347,6 +347,7 @@ export const IconEyeOff: TablerIcon;
export const IconEye: TablerIcon;
export const IconFaceId: TablerIcon;
export const IconFall: TablerIcon;
+export const IconFileCertificate: TablerIcon;
export const IconFileCheck: TablerIcon;
export const IconFileCode: TablerIcon;
export const IconFileDiff: TablerIcon;
@@ -364,6 +365,7 @@ export const IconFileShredder: TablerIcon;
export const IconFileText: TablerIcon;
export const IconFileUpload: TablerIcon;
export const IconFileX: TablerIcon;
+export const IconFileZip: TablerIcon;
export const IconFile: TablerIcon;
export const IconFilterOff: TablerIcon;
export const IconFilter: TablerIcon;
@@ -466,6 +468,7 @@ export const IconLayoutRows: TablerIcon;
export const IconLayoutSidebarRight: TablerIcon;
export const IconLayoutSidebar: TablerIcon;
export const IconLayout: TablerIcon;
+export const IconLeaf: TablerIcon;
export const IconLego: TablerIcon;
export const IconLetterA: TablerIcon;
export const IconLetterB: TablerIcon;
@@ -604,6 +607,7 @@ export const IconPlaneArrival: TablerIcon;
export const IconPlaneDeparture: TablerIcon;
export const IconPlane: TablerIcon;
export const IconPlanet: TablerIcon;
+export const IconPlant: TablerIcon;
export const IconPlayerPause: TablerIcon;
export const IconPlayerPlay: TablerIcon;
export const IconPlayerRecord: TablerIcon;
@@ -655,6 +659,7 @@ export const IconScooter: TablerIcon;
export const IconScreenShareOff: TablerIcon;
export const IconScreenShare: TablerIcon;
export const IconSearch: TablerIcon;
+export const IconSeeding: TablerIcon;
export const IconSelect: TablerIcon;
export const IconSelector: TablerIcon;
export const IconSend: TablerIcon;
@@ -778,6 +783,7 @@ export const IconVectorBeizer: TablerIcon;
export const IconVectorTriangle: TablerIcon;
export const IconVector: TablerIcon;
export const IconVenus: TablerIcon;
+export const IconVersions: TablerIcon;
export const IconVideoMinus: TablerIcon;
export const IconVideoOff: TablerIcon;
export const IconVideoPlus: TablerIcon;
diff --git a/icons-react/index.js b/icons-react/index.js
index 9a79986..abdfd77 100644
--- a/icons-react/index.js
+++ b/icons-react/index.js
@@ -341,6 +341,7 @@ export { default as IconEyeOff } from './icons-js/eye-off.js';
export { default as IconEye } from './icons-js/eye.js';
export { default as IconFaceId } from './icons-js/face-id.js';
export { default as IconFall } from './icons-js/fall.js';
+export { default as IconFileCertificate } from './icons-js/file-certificate.js';
export { default as IconFileCheck } from './icons-js/file-check.js';
export { default as IconFileCode } from './icons-js/file-code.js';
export { default as IconFileDiff } from './icons-js/file-diff.js';
@@ -358,6 +359,7 @@ export { default as IconFileShredder } from './icons-js/file-shredder.js';
export { default as IconFileText } from './icons-js/file-text.js';
export { default as IconFileUpload } from './icons-js/file-upload.js';
export { default as IconFileX } from './icons-js/file-x.js';
+export { default as IconFileZip } from './icons-js/file-zip.js';
export { default as IconFile } from './icons-js/file.js';
export { default as IconFilterOff } from './icons-js/filter-off.js';
export { default as IconFilter } from './icons-js/filter.js';
@@ -460,6 +462,7 @@ export { default as IconLayoutRows } from './icons-js/layout-rows.js';
export { default as IconLayoutSidebarRight } from './icons-js/layout-sidebar-right.js';
export { default as IconLayoutSidebar } from './icons-js/layout-sidebar.js';
export { default as IconLayout } from './icons-js/layout.js';
+export { default as IconLeaf } from './icons-js/leaf.js';
export { default as IconLego } from './icons-js/lego.js';
export { default as IconLetterA } from './icons-js/letter-a.js';
export { default as IconLetterB } from './icons-js/letter-b.js';
@@ -598,6 +601,7 @@ export { default as IconPlaneArrival } from './icons-js/plane-arrival.js';
export { default as IconPlaneDeparture } from './icons-js/plane-departure.js';
export { default as IconPlane } from './icons-js/plane.js';
export { default as IconPlanet } from './icons-js/planet.js';
+export { default as IconPlant } from './icons-js/plant.js';
export { default as IconPlayerPause } from './icons-js/player-pause.js';
export { default as IconPlayerPlay } from './icons-js/player-play.js';
export { default as IconPlayerRecord } from './icons-js/player-record.js';
@@ -649,6 +653,7 @@ export { default as IconScooter } from './icons-js/scooter.js';
export { default as IconScreenShareOff } from './icons-js/screen-share-off.js';
export { default as IconScreenShare } from './icons-js/screen-share.js';
export { default as IconSearch } from './icons-js/search.js';
+export { default as IconSeeding } from './icons-js/seeding.js';
export { default as IconSelect } from './icons-js/select.js';
export { default as IconSelector } from './icons-js/selector.js';
export { default as IconSend } from './icons-js/send.js';
@@ -772,6 +777,7 @@ export { default as IconVectorBeizer } from './icons-js/vector-beizer.js';
export { default as IconVectorTriangle } from './icons-js/vector-triangle.js';
export { default as IconVector } from './icons-js/vector.js';
export { default as IconVenus } from './icons-js/venus.js';
+export { default as IconVersions } from './icons-js/versions.js';
export { default as IconVideoMinus } from './icons-js/video-minus.js';
export { default as IconVideoOff } from './icons-js/video-off.js';
export { default as IconVideoPlus } from './icons-js/video-plus.js';