diff options
author | codecalm <codecalm@gmail.com> | 2020-12-11 13:42:20 +0100 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-12-11 13:42:20 +0100 |
commit | a3e21c1343ff6a3f5ca5ab6f2973761f350ffe25 (patch) | |
tree | c7bfc0a64cc4ff2bfcbdb81aa8d845f870bea85f /icons-react/icons-js | |
parent | 4 new icons: `receipt-2`, `receipt-off`, `receipt-refund`, `receipt` (diff) | |
download | tabler-icons-a3e21c1343ff6a3f5ca5ab6f2973761f350ffe25.tar.xz |
Release 1.38.0v1.38.0
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r-- | icons-react/icons-js/credit-card-off.js | 2 | ||||
-rw-r--r-- | icons-react/icons-js/file-info.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/file-report.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/files-off.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/files.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/layout-grid-add.js | 2 | ||||
-rw-r--r-- | icons-react/icons-js/number-0.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/number-1.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/number-2.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/number-3.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/number-4.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/number-5.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/number-6.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/number-7.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/number-8.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/number-9.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/receipt-2.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/receipt-off.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/receipt-refund.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/receipt.js | 12 |
20 files changed, 218 insertions, 2 deletions
diff --git a/icons-react/icons-js/credit-card-off.js b/icons-react/icons-js/credit-card-off.js index 8981d618..a51f8d7c 100644 --- a/icons-react/icons-js/credit-card-off.js +++ b/icons-react/icons-js/credit-card-off.js @@ -6,7 +6,7 @@ function IconCreditCardOff({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-credit-card-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" /><line x1={3} y1={3} x2={21} y2={21} /><path d="" /><path d="M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87" /><line x1={3} y1={11} x2={11} y2={11} /><line x1={15} y1={11} x2={21} y2={11} /><line x1={7} y1={15} x2={7.01} y2={15} /><line x1={11} y1={15} x2={13} y2={15} /></svg>; + return <svg className="icon icon-tabler icon-tabler-credit-card-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" /><line x1={3} y1={3} x2={21} y2={21} /><path d="M9 5h9a3 3 0 0 1 3 3v8a3 3 0 0 1 -.128 .87" /><path d="M18.87 18.872a3 3 0 0 1 -.87 .128h-12a3 3 0 0 1 -3 -3v-8c0 -1.352 .894 -2.495 2.124 -2.87" /><line x1={3} y1={11} x2={11} y2={11} /><line x1={15} y1={11} x2={21} y2={11} /><line x1={7} y1={15} x2={7.01} y2={15} /><line x1={11} y1={15} x2={13} y2={15} /></svg>; } export default IconCreditCardOff;
\ No newline at end of file diff --git a/icons-react/icons-js/file-info.js b/icons-react/icons-js/file-info.js new file mode 100644 index 00000000..2225b52c --- /dev/null +++ b/icons-react/icons-js/file-info.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFileInfo({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-file-info" 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 3v4a1 1 0 0 0 1 1h4" /><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" /><path d="M11 14h1v4h1" /><path d="M12 11h.01" /></svg>; +} + +export default IconFileInfo;
\ No newline at end of file diff --git a/icons-react/icons-js/file-report.js b/icons-react/icons-js/file-report.js new file mode 100644 index 00000000..f60041a3 --- /dev/null +++ b/icons-react/icons-js/file-report.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFileReport({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-file-report" 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={17} cy={17} r={4} /><path d="M17 13v4h4" /><path d="M12 3v4a1 1 0 0 0 1 1h4" /><path d="M11.5 21h-6.5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2m0 3v4" /></svg>; +} + +export default IconFileReport;
\ No newline at end of file diff --git a/icons-react/icons-js/files-off.js b/icons-react/icons-js/files-off.js new file mode 100644 index 00000000..103cadb5 --- /dev/null +++ b/icons-react/icons-js/files-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFilesOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-files-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="M15 3v4a1 1 0 0 0 1 1h4" /><path d="M17 17h-6a2 2 0 0 1 -2 -2v-6m0 -4a2 2 0 0 1 2 -2h4l5 5v7c0 .294 -.063 .572 -.177 .823" /><path d="M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2" /><line x1={3} y1={3} x2={21} y2={21} /></svg>; +} + +export default IconFilesOff;
\ No newline at end of file diff --git a/icons-react/icons-js/files.js b/icons-react/icons-js/files.js new file mode 100644 index 00000000..9fd440bb --- /dev/null +++ b/icons-react/icons-js/files.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFiles({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-files" 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="M18 17h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h4l5 5v7a2 2 0 0 1 -2 2z" /><path d="M16 17v2a2 2 0 0 1 -2 2h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2" /></svg>; +} + +export default IconFiles;
\ No newline at end of file diff --git a/icons-react/icons-js/layout-grid-add.js b/icons-react/icons-js/layout-grid-add.js index a17f363f..ba0cadb3 100644 --- a/icons-react/icons-js/layout-grid-add.js +++ b/icons-react/icons-js/layout-grid-add.js @@ -6,7 +6,7 @@ function IconLayoutGridAdd({ stroke = 2, ...props }) { - return <svg className="icon icon-tabler icon-tabler-layout-grid-add" 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={6} height={6} rx={1} /><rect x={14} y={4} width={6} height={6} rx={1} /><rect x={4} y={14} width={6} height={6} rx={1} /><rect x={14} y={14} width={6} height={6} rx={1} /></svg>; + return <svg className="icon icon-tabler icon-tabler-layout-grid-add" 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={6} height={6} rx={1} /><rect x={14} y={4} width={6} height={6} rx={1} /><rect x={4} y={14} width={6} height={6} rx={1} /><path d="M14 17h6" /><path d="M17 14v6" /></svg>; } export default IconLayoutGridAdd;
\ No newline at end of file diff --git a/icons-react/icons-js/number-0.js b/icons-react/icons-js/number-0.js new file mode 100644 index 00000000..6c15ba0f --- /dev/null +++ b/icons-react/icons-js/number-0.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNumber0({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-number-0" 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 16v-8" /><path d="M12 20a4 4 0 0 0 4 -4v-8a4 4 0 1 0 -8 0v8a4 4 0 0 0 4 4z" /></svg>; +} + +export default IconNumber0;
\ No newline at end of file diff --git a/icons-react/icons-js/number-1.js b/icons-react/icons-js/number-1.js new file mode 100644 index 00000000..20dec997 --- /dev/null +++ b/icons-react/icons-js/number-1.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNumber1({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-number-1" 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 20v-16l-5 5" /></svg>; +} + +export default IconNumber1;
\ No newline at end of file diff --git a/icons-react/icons-js/number-2.js b/icons-react/icons-js/number-2.js new file mode 100644 index 00000000..08b3523d --- /dev/null +++ b/icons-react/icons-js/number-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNumber2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-number-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="M8 8a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 9.185h8" /></svg>; +} + +export default IconNumber2;
\ No newline at end of file diff --git a/icons-react/icons-js/number-3.js b/icons-react/icons-js/number-3.js new file mode 100644 index 00000000..4ca4f476 --- /dev/null +++ b/icons-react/icons-js/number-3.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNumber3({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-number-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 12a4 4 0 1 0 -4 -4" /><path d="M8 16a4 4 0 1 0 4 -4" /></svg>; +} + +export default IconNumber3;
\ No newline at end of file diff --git a/icons-react/icons-js/number-4.js b/icons-react/icons-js/number-4.js new file mode 100644 index 00000000..f8ecf16a --- /dev/null +++ b/icons-react/icons-js/number-4.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNumber4({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-number-4" 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 20v-15l-8 11h10" /></svg>; +} + +export default IconNumber4;
\ No newline at end of file diff --git a/icons-react/icons-js/number-5.js b/icons-react/icons-js/number-5.js new file mode 100644 index 00000000..805e2b9a --- /dev/null +++ b/icons-react/icons-js/number-5.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNumber5({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-number-5" 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 20h4a4 4 0 1 0 0 -8h-4v-8h8" /></svg>; +} + +export default IconNumber5;
\ No newline at end of file diff --git a/icons-react/icons-js/number-6.js b/icons-react/icons-js/number-6.js new file mode 100644 index 00000000..13e22d59 --- /dev/null +++ b/icons-react/icons-js/number-6.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNumber6({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-number-6" 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 16a4 4 0 1 0 8 0v-1a4 4 0 1 0 -8 0" /><path d="M16 8a4 4 0 1 0 -8 0v8" /></svg>; +} + +export default IconNumber6;
\ No newline at end of file diff --git a/icons-react/icons-js/number-7.js b/icons-react/icons-js/number-7.js new file mode 100644 index 00000000..5a2b9f11 --- /dev/null +++ b/icons-react/icons-js/number-7.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNumber7({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-number-7" 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 4h8l-4 16" /></svg>; +} + +export default IconNumber7;
\ No newline at end of file diff --git a/icons-react/icons-js/number-8.js b/icons-react/icons-js/number-8.js new file mode 100644 index 00000000..4c66dd05 --- /dev/null +++ b/icons-react/icons-js/number-8.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNumber8({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-number-8" 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={8} r={4} /><circle cx={12} cy={16} r={4} /></svg>; +} + +export default IconNumber8;
\ No newline at end of file diff --git a/icons-react/icons-js/number-9.js b/icons-react/icons-js/number-9.js new file mode 100644 index 00000000..7684cf0f --- /dev/null +++ b/icons-react/icons-js/number-9.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconNumber9({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-number-9" 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 8a4 4 0 1 0 -8 0v1a4 4 0 1 0 8 0" /><path d="M8 16a4 4 0 1 0 8 0v-8" /></svg>; +} + +export default IconNumber9;
\ No newline at end of file diff --git a/icons-react/icons-js/receipt-2.js b/icons-react/icons-js/receipt-2.js new file mode 100644 index 00000000..26c5d75b --- /dev/null +++ b/icons-react/icons-js/receipt-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconReceipt2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-receipt-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="M5 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2" /><path d="M14 8h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5m2 0v1.5m0 -9v1.5" /></svg>; +} + +export default IconReceipt2;
\ No newline at end of file diff --git a/icons-react/icons-js/receipt-off.js b/icons-react/icons-js/receipt-off.js new file mode 100644 index 00000000..abd91cf2 --- /dev/null +++ b/icons-react/icons-js/receipt-off.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconReceiptOff({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-receipt-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="M5 21v-16m2 -2h10a2 2 0 0 1 2 2v10m0 4.01v1.99l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2" /><line x1={11} y1={7} x2={15} y2={7} /><line x1={9} y1={11} x2={11} y2={11} /><line x1={13} y1={15} x2={15} y2={15} /><line x1={15} y1={11} x2={15} y2={11.01} /><line x1={3} y1={3} x2={21} y2={21} /></svg>; +} + +export default IconReceiptOff;
\ No newline at end of file diff --git a/icons-react/icons-js/receipt-refund.js b/icons-react/icons-js/receipt-refund.js new file mode 100644 index 00000000..7e7d0656 --- /dev/null +++ b/icons-react/icons-js/receipt-refund.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconReceiptRefund({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-receipt-refund" 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 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2" /><path d="M15 14v-2a2 2 0 0 0 -2 -2h-4l2 -2m0 4l-2 -2" /></svg>; +} + +export default IconReceiptRefund;
\ No newline at end of file diff --git a/icons-react/icons-js/receipt.js b/icons-react/icons-js/receipt.js new file mode 100644 index 00000000..58a5d235 --- /dev/null +++ b/icons-react/icons-js/receipt.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconReceipt({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg className="icon icon-tabler icon-tabler-receipt" 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 21v-16a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v16l-3 -2l-2 2l-2 -2l-2 2l-2 -2l-3 2m4 -14h6m-6 4h6m-2 4h2" /></svg>; +} + +export default IconReceipt;
\ No newline at end of file |