diff options
| author | codecalm <codecalm@gmail.com> | 2022-08-08 15:57:51 +0200 | 
|---|---|---|
| committer | codecalm <codecalm@gmail.com> | 2022-08-08 15:57:51 +0200 | 
| commit | 4cf7c264e89d3bd48ff3f81cc114a90c5e00cb34 (patch) | |
| tree | a69485e00fb0769036e585bbe1ac4fe571399ef0 /icons-react | |
| parent | 18 new icons: `arrows-diff`, `brand-google-fit`, `brand-xbox`, `clipboard-cop... (diff) | |
| download | tabler-icons-4cf7c264e89d3bd48ff3f81cc114a90c5e00cb34.tar.xz | |
Release 1.79.0v1.79.0
Diffstat (limited to 'icons-react')
| -rw-r--r-- | icons-react/icons-js/arrows-diff.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/brand-google-fit.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/brand-xbox.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/clipboard-copy.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/currency-yuan.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/empathize.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/exposure-0.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/exposure-minus-1.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/exposure-minus-2.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/exposure-plus-1.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/exposure-plus-2.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/file-orientation.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/input-search.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/mickey.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/text-orientation.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/text-plus.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/text-spellcheck.js | 12 | ||||
| -rw-r--r-- | icons-react/icons-js/zoom-replace.js | 12 | ||||
| -rw-r--r-- | icons-react/index.d.ts | 18 | ||||
| -rw-r--r-- | icons-react/index.js | 18 | 
20 files changed, 252 insertions, 0 deletions
| diff --git a/icons-react/icons-js/arrows-diff.js b/icons-react/icons-js/arrows-diff.js new file mode 100644 index 00000000..a4130038 --- /dev/null +++ b/icons-react/icons-js/arrows-diff.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconArrowsDiff({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-arrows-diff" 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 16h10" /><path d="M11 16l4 4" /><path d="M11 16l4 -4" /><path d="M13 8h-10" /><path d="M13 8l-4 4" /><path d="M13 8l-4 -4" /></svg>; +} + +export default IconArrowsDiff;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-google-fit.js b/icons-react/icons-js/brand-google-fit.js new file mode 100644 index 00000000..2989439f --- /dev/null +++ b/icons-react/icons-js/brand-google-fit.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandGoogleFit({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-google-fit" 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 9.314l-2.343 -2.344a3.314 3.314 0 0 0 -4.686 4.686l2.343 2.344l4.686 4.686l7.03 -7.03a3.314 3.314 0 0 0 -4.687 -4.685l-7.03 7.029" /></svg>; +} + +export default IconBrandGoogleFit;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-xbox.js b/icons-react/icons-js/brand-xbox.js new file mode 100644 index 00000000..46bb1d45 --- /dev/null +++ b/icons-react/icons-js/brand-xbox.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconBrandXbox({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-brand-xbox" 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="M6.5 5c7.72 2.266 10.037 7.597 12.5 12.5" /><path d="M17.5 5c-7.72 2.266 -10.037 7.597 -12.5 12.5" /></svg>; +} + +export default IconBrandXbox;
\ No newline at end of file diff --git a/icons-react/icons-js/clipboard-copy.js b/icons-react/icons-js/clipboard-copy.js new file mode 100644 index 00000000..fb65f540 --- /dev/null +++ b/icons-react/icons-js/clipboard-copy.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconClipboardCopy({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-clipboard-copy" 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 2h3m9 -9v-5a2 2 0 0 0 -2 -2h-2" /><path d="M13 17v-1a1 1 0 0 1 1 -1h1m3 0h1a1 1 0 0 1 1 1v1m0 3v1a1 1 0 0 1 -1 1h-1m-3 0h-1a1 1 0 0 1 -1 -1v-1" /><rect x={9} y={3} width={6} height={4} rx={2} /></svg>; +} + +export default IconClipboardCopy;
\ No newline at end of file diff --git a/icons-react/icons-js/currency-yuan.js b/icons-react/icons-js/currency-yuan.js new file mode 100644 index 00000000..a5b1d894 --- /dev/null +++ b/icons-react/icons-js/currency-yuan.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconCurrencyYuan({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-currency-yuan" 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 19v-7l-5 -7" /><path d="M17 5l-5 7" /><path d="M8 13h8" /></svg>; +} + +export default IconCurrencyYuan;
\ No newline at end of file diff --git a/icons-react/icons-js/empathize.js b/icons-react/icons-js/empathize.js new file mode 100644 index 00000000..4a3b2cb1 --- /dev/null +++ b/icons-react/icons-js/empathize.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconEmpathize({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-empathize" 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.5} r={2.5} /><path d="M12 21.368l5.095 -5.096a3.088 3.088 0 1 0 -4.367 -4.367l-.728 .727l-.728 -.727a3.088 3.088 0 1 0 -4.367 4.367l5.095 5.096z" /></svg>; +} + +export default IconEmpathize;
\ No newline at end of file diff --git a/icons-react/icons-js/exposure-0.js b/icons-react/icons-js/exposure-0.js new file mode 100644 index 00000000..b915de97 --- /dev/null +++ b/icons-react/icons-js/exposure-0.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconExposure0({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-exposure-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="M12 19a4 4 0 0 0 4 -4v-6a4 4 0 1 0 -8 0v6a4 4 0 0 0 4 4z" /></svg>; +} + +export default IconExposure0;
\ No newline at end of file diff --git a/icons-react/icons-js/exposure-minus-1.js b/icons-react/icons-js/exposure-minus-1.js new file mode 100644 index 00000000..c06fb82c --- /dev/null +++ b/icons-react/icons-js/exposure-minus-1.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconExposureMinus1({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-exposure-minus-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="M3 12h6" /><path d="M18 19v-14l-4 4" /></svg>; +} + +export default IconExposureMinus1;
\ No newline at end of file diff --git a/icons-react/icons-js/exposure-minus-2.js b/icons-react/icons-js/exposure-minus-2.js new file mode 100644 index 00000000..290b4315 --- /dev/null +++ b/icons-react/icons-js/exposure-minus-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconExposureMinus2({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-exposure-minus-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 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8" /><path d="M3 12h6" /></svg>; +} + +export default IconExposureMinus2;
\ No newline at end of file diff --git a/icons-react/icons-js/exposure-plus-1.js b/icons-react/icons-js/exposure-plus-1.js new file mode 100644 index 00000000..2e51db5a --- /dev/null +++ b/icons-react/icons-js/exposure-plus-1.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconExposurePlus1({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-exposure-plus-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="M3 12h6" /><path d="M6 9v6" /><path d="M18 19v-14l-4 4" /></svg>; +} + +export default IconExposurePlus1;
\ No newline at end of file diff --git a/icons-react/icons-js/exposure-plus-2.js b/icons-react/icons-js/exposure-plus-2.js new file mode 100644 index 00000000..c538dda5 --- /dev/null +++ b/icons-react/icons-js/exposure-plus-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconExposurePlus2({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-exposure-plus-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 9a4 4 0 1 1 8 0c0 1.098 -.564 2.025 -1.159 2.815l-6.841 7.185h8" /><path d="M3 12h6" /><path d="M6 9v6" /></svg>; +} + +export default IconExposurePlus2;
\ No newline at end of file diff --git a/icons-react/icons-js/file-orientation.js b/icons-react/icons-js/file-orientation.js new file mode 100644 index 00000000..553826f8 --- /dev/null +++ b/icons-react/icons-js/file-orientation.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconFileOrientation({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-file-orientation" 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="M10 21h-3a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v2" /><path d="M13 20h5a2 2 0 0 0 2 -2v-5" /><path d="M15 22l-2 -2l2 -2" /><path d="M18 15l2 -2l2 2" /></svg>; +} + +export default IconFileOrientation;
\ No newline at end of file diff --git a/icons-react/icons-js/input-search.js b/icons-react/icons-js/input-search.js new file mode 100644 index 00000000..76e82f67 --- /dev/null +++ b/icons-react/icons-js/input-search.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconInputSearch({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-input-search" 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 11v-3a2 2 0 0 0 -2 -2h-12a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h5" /><circle cx={15.5} cy={15.5} r={2.5} /><path d="M17.5 17.5l2.5 2.5" /></svg>; +} + +export default IconInputSearch;
\ No newline at end of file diff --git a/icons-react/icons-js/mickey.js b/icons-react/icons-js/mickey.js new file mode 100644 index 00000000..1ab8c8f9 --- /dev/null +++ b/icons-react/icons-js/mickey.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMickey({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mickey" 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.5 3a3.5 3.5 0 0 1 3.25 4.8a7.017 7.017 0 0 0 -2.424 2.1a3.5 3.5 0 1 1 -.826 -6.9z" /><path d="M18.5 3a3.5 3.5 0 1 1 -.826 6.902a7.013 7.013 0 0 0 -2.424 -2.103a3.5 3.5 0 0 1 3.25 -4.799z" /><circle cx={12} cy={14} r={7} /></svg>; +} + +export default IconMickey;
\ No newline at end of file diff --git a/icons-react/icons-js/text-orientation.js b/icons-react/icons-js/text-orientation.js new file mode 100644 index 00000000..6829d8ef --- /dev/null +++ b/icons-react/icons-js/text-orientation.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTextOrientation({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-text-orientation" 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 15l-5 -5c-1.367 -1.367 -1.367 -3.633 0 -5s3.633 -1.367 5 0l5 5" /><path d="M5.5 11.5l5 -5" /><path d="M21 12l-9 9" /><path d="M21 12v4" /><path d="M21 12h-4" /></svg>; +} + +export default IconTextOrientation;
\ No newline at end of file diff --git a/icons-react/icons-js/text-plus.js b/icons-react/icons-js/text-plus.js new file mode 100644 index 00000000..df94eb4c --- /dev/null +++ b/icons-react/icons-js/text-plus.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTextPlus({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-text-plus" 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 10h-14" /><path d="M5 6h14" /><path d="M14 14h-9" /><path d="M5 18h6" /><path d="M18 15v6" /><path d="M15 18h6" /></svg>; +} + +export default IconTextPlus;
\ No newline at end of file diff --git a/icons-react/icons-js/text-spellcheck.js b/icons-react/icons-js/text-spellcheck.js new file mode 100644 index 00000000..70fcf7cb --- /dev/null +++ b/icons-react/icons-js/text-spellcheck.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconTextSpellcheck({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-text-spellcheck" 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 15v-7.5a3.5 3.5 0 0 1 7 0v7.5" /><path d="M5 10h7" /><path d="M10 18l3 3l7 -7" /></svg>; +} + +export default IconTextSpellcheck;
\ No newline at end of file diff --git a/icons-react/icons-js/zoom-replace.js b/icons-react/icons-js/zoom-replace.js new file mode 100644 index 00000000..976fce04 --- /dev/null +++ b/icons-react/icons-js/zoom-replace.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconZoomReplace({ +  size = 24, +  color = "currentColor", +  stroke = 2, +  ...props +}) { +  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-zoom-replace" 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="M21 21l-6 -6" /><path d="M3.291 8.003a7 7 0 0 1 5.077 -4.806a7.021 7.021 0 0 1 8.242 4.403" /><path d="M17 4v4h-4" /><path d="M16.705 12.005a7 7 0 0 1 -5.074 4.798a7.021 7.021 0 0 1 -8.241 -4.403" /><path d="M3 16v-4h4" /></svg>; +} + +export default IconZoomReplace;
\ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index 4d99aef0..528fbedb 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -174,6 +174,7 @@ export const IconArrowsDiagonal2: TablerIcon;  export const IconArrowsDiagonalMinimize2: TablerIcon;  export const IconArrowsDiagonalMinimize: TablerIcon;  export const IconArrowsDiagonal: TablerIcon; +export const IconArrowsDiff: TablerIcon;  export const IconArrowsDoubleNeSw: TablerIcon;  export const IconArrowsDoubleNwSe: TablerIcon;  export const IconArrowsDoubleSeNw: TablerIcon; @@ -411,6 +412,7 @@ export const IconBrandGitlab: TablerIcon;  export const IconBrandGmail: TablerIcon;  export const IconBrandGoogleAnalytics: TablerIcon;  export const IconBrandGoogleDrive: TablerIcon; +export const IconBrandGoogleFit: TablerIcon;  export const IconBrandGoogleOne: TablerIcon;  export const IconBrandGooglePhotos: TablerIcon;  export const IconBrandGooglePlay: TablerIcon; @@ -500,6 +502,7 @@ export const IconBrandWalmart: TablerIcon;  export const IconBrandWhatsapp: TablerIcon;  export const IconBrandWindows: TablerIcon;  export const IconBrandWish: TablerIcon; +export const IconBrandXbox: TablerIcon;  export const IconBrandXing: TablerIcon;  export const IconBrandYahoo: TablerIcon;  export const IconBrandYatse: TablerIcon; @@ -710,6 +713,7 @@ export const IconClearAll: TablerIcon;  export const IconClearFormatting: TablerIcon;  export const IconClick: TablerIcon;  export const IconClipboardCheck: TablerIcon; +export const IconClipboardCopy: TablerIcon;  export const IconClipboardList: TablerIcon;  export const IconClipboardOff: TablerIcon;  export const IconClipboardPlus: TablerIcon; @@ -849,6 +853,7 @@ export const IconCurrencyTaka: TablerIcon;  export const IconCurrencyTugrik: TablerIcon;  export const IconCurrencyWon: TablerIcon;  export const IconCurrencyYen: TablerIcon; +export const IconCurrencyYuan: TablerIcon;  export const IconCurrencyZloty: TablerIcon;  export const IconCurrency: TablerIcon;  export const IconCurrentLocationOff: TablerIcon; @@ -968,6 +973,7 @@ export const IconEggOff: TablerIcon;  export const IconEgg: TablerIcon;  export const IconElevator: TablerIcon;  export const IconEmergencyBed: TablerIcon; +export const IconEmpathize: TablerIcon;  export const IconEmphasis: TablerIcon;  export const IconEngineOff: TablerIcon;  export const IconEngine: TablerIcon; @@ -982,6 +988,11 @@ export const IconExchange: TablerIcon;  export const IconExclamationMarkOff: TablerIcon;  export const IconExclamationMark: TablerIcon;  export const IconExplicit: TablerIcon; +export const IconExposure0: TablerIcon; +export const IconExposureMinus1: TablerIcon; +export const IconExposureMinus2: TablerIcon; +export const IconExposurePlus1: TablerIcon; +export const IconExposurePlus2: TablerIcon;  export const IconExposure: TablerIcon;  export const IconExternalLinkOff: TablerIcon;  export const IconExternalLink: TablerIcon; @@ -1031,6 +1042,7 @@ export const IconFileLike: TablerIcon;  export const IconFileMinus: TablerIcon;  export const IconFileMusic: TablerIcon;  export const IconFileOff: TablerIcon; +export const IconFileOrientation: TablerIcon;  export const IconFilePencil: TablerIcon;  export const IconFilePhone: TablerIcon;  export const IconFilePlus: TablerIcon; @@ -1247,6 +1259,7 @@ export const IconIndentIncrease: TablerIcon;  export const IconInfinity: TablerIcon;  export const IconInfoCircle: TablerIcon;  export const IconInfoSquare: TablerIcon; +export const IconInputSearch: TablerIcon;  export const IconItalic: TablerIcon;  export const IconJewishStar: TablerIcon;  export const IconJumpRope: TablerIcon; @@ -1451,6 +1464,7 @@ export const IconMessage: TablerIcon;  export const IconMessagesOff: TablerIcon;  export const IconMessages: TablerIcon;  export const IconMeteor: TablerIcon; +export const IconMickey: TablerIcon;  export const IconMicrophone2: TablerIcon;  export const IconMicrophoneOff: TablerIcon;  export const IconMicrophone: TablerIcon; @@ -1979,8 +1993,11 @@ export const IconTextDecrease: TablerIcon;  export const IconTextDirectionLtr: TablerIcon;  export const IconTextDirectionRtl: TablerIcon;  export const IconTextIncrease: TablerIcon; +export const IconTextOrientation: TablerIcon; +export const IconTextPlus: TablerIcon;  export const IconTextRecognition: TablerIcon;  export const IconTextResize: TablerIcon; +export const IconTextSpellcheck: TablerIcon;  export const IconTextWrapDisabled: TablerIcon;  export const IconTextWrap: TablerIcon;  export const IconThermometer: TablerIcon; @@ -2162,5 +2179,6 @@ export const IconZoomOutArea: TablerIcon;  export const IconZoomOut: TablerIcon;  export const IconZoomPan: TablerIcon;  export const IconZoomQuestion: TablerIcon; +export const IconZoomReplace: TablerIcon;  export const IconZoomReset: TablerIcon;  export const IconZzz: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index 7dd5fc5d..575e366f 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -168,6 +168,7 @@ export { default as IconArrowsDiagonal2 } from './icons-js/arrows-diagonal-2.js'  export { default as IconArrowsDiagonalMinimize2 } from './icons-js/arrows-diagonal-minimize-2.js';  export { default as IconArrowsDiagonalMinimize } from './icons-js/arrows-diagonal-minimize.js';  export { default as IconArrowsDiagonal } from './icons-js/arrows-diagonal.js'; +export { default as IconArrowsDiff } from './icons-js/arrows-diff.js';  export { default as IconArrowsDoubleNeSw } from './icons-js/arrows-double-ne-sw.js';  export { default as IconArrowsDoubleNwSe } from './icons-js/arrows-double-nw-se.js';  export { default as IconArrowsDoubleSeNw } from './icons-js/arrows-double-se-nw.js'; @@ -405,6 +406,7 @@ export { default as IconBrandGitlab } from './icons-js/brand-gitlab.js';  export { default as IconBrandGmail } from './icons-js/brand-gmail.js';  export { default as IconBrandGoogleAnalytics } from './icons-js/brand-google-analytics.js';  export { default as IconBrandGoogleDrive } from './icons-js/brand-google-drive.js'; +export { default as IconBrandGoogleFit } from './icons-js/brand-google-fit.js';  export { default as IconBrandGoogleOne } from './icons-js/brand-google-one.js';  export { default as IconBrandGooglePhotos } from './icons-js/brand-google-photos.js';  export { default as IconBrandGooglePlay } from './icons-js/brand-google-play.js'; @@ -494,6 +496,7 @@ export { default as IconBrandWalmart } from './icons-js/brand-walmart.js';  export { default as IconBrandWhatsapp } from './icons-js/brand-whatsapp.js';  export { default as IconBrandWindows } from './icons-js/brand-windows.js';  export { default as IconBrandWish } from './icons-js/brand-wish.js'; +export { default as IconBrandXbox } from './icons-js/brand-xbox.js';  export { default as IconBrandXing } from './icons-js/brand-xing.js';  export { default as IconBrandYahoo } from './icons-js/brand-yahoo.js';  export { default as IconBrandYatse } from './icons-js/brand-yatse.js'; @@ -704,6 +707,7 @@ export { default as IconClearAll } from './icons-js/clear-all.js';  export { default as IconClearFormatting } from './icons-js/clear-formatting.js';  export { default as IconClick } from './icons-js/click.js';  export { default as IconClipboardCheck } from './icons-js/clipboard-check.js'; +export { default as IconClipboardCopy } from './icons-js/clipboard-copy.js';  export { default as IconClipboardList } from './icons-js/clipboard-list.js';  export { default as IconClipboardOff } from './icons-js/clipboard-off.js';  export { default as IconClipboardPlus } from './icons-js/clipboard-plus.js'; @@ -843,6 +847,7 @@ export { default as IconCurrencyTaka } from './icons-js/currency-taka.js';  export { default as IconCurrencyTugrik } from './icons-js/currency-tugrik.js';  export { default as IconCurrencyWon } from './icons-js/currency-won.js';  export { default as IconCurrencyYen } from './icons-js/currency-yen.js'; +export { default as IconCurrencyYuan } from './icons-js/currency-yuan.js';  export { default as IconCurrencyZloty } from './icons-js/currency-zloty.js';  export { default as IconCurrency } from './icons-js/currency.js';  export { default as IconCurrentLocationOff } from './icons-js/current-location-off.js'; @@ -962,6 +967,7 @@ export { default as IconEggOff } from './icons-js/egg-off.js';  export { default as IconEgg } from './icons-js/egg.js';  export { default as IconElevator } from './icons-js/elevator.js';  export { default as IconEmergencyBed } from './icons-js/emergency-bed.js'; +export { default as IconEmpathize } from './icons-js/empathize.js';  export { default as IconEmphasis } from './icons-js/emphasis.js';  export { default as IconEngineOff } from './icons-js/engine-off.js';  export { default as IconEngine } from './icons-js/engine.js'; @@ -976,6 +982,11 @@ export { default as IconExchange } from './icons-js/exchange.js';  export { default as IconExclamationMarkOff } from './icons-js/exclamation-mark-off.js';  export { default as IconExclamationMark } from './icons-js/exclamation-mark.js';  export { default as IconExplicit } from './icons-js/explicit.js'; +export { default as IconExposure0 } from './icons-js/exposure-0.js'; +export { default as IconExposureMinus1 } from './icons-js/exposure-minus-1.js'; +export { default as IconExposureMinus2 } from './icons-js/exposure-minus-2.js'; +export { default as IconExposurePlus1 } from './icons-js/exposure-plus-1.js'; +export { default as IconExposurePlus2 } from './icons-js/exposure-plus-2.js';  export { default as IconExposure } from './icons-js/exposure.js';  export { default as IconExternalLinkOff } from './icons-js/external-link-off.js';  export { default as IconExternalLink } from './icons-js/external-link.js'; @@ -1025,6 +1036,7 @@ export { default as IconFileLike } from './icons-js/file-like.js';  export { default as IconFileMinus } from './icons-js/file-minus.js';  export { default as IconFileMusic } from './icons-js/file-music.js';  export { default as IconFileOff } from './icons-js/file-off.js'; +export { default as IconFileOrientation } from './icons-js/file-orientation.js';  export { default as IconFilePencil } from './icons-js/file-pencil.js';  export { default as IconFilePhone } from './icons-js/file-phone.js';  export { default as IconFilePlus } from './icons-js/file-plus.js'; @@ -1241,6 +1253,7 @@ export { default as IconIndentIncrease } from './icons-js/indent-increase.js';  export { default as IconInfinity } from './icons-js/infinity.js';  export { default as IconInfoCircle } from './icons-js/info-circle.js';  export { default as IconInfoSquare } from './icons-js/info-square.js'; +export { default as IconInputSearch } from './icons-js/input-search.js';  export { default as IconItalic } from './icons-js/italic.js';  export { default as IconJewishStar } from './icons-js/jewish-star.js';  export { default as IconJumpRope } from './icons-js/jump-rope.js'; @@ -1445,6 +1458,7 @@ export { default as IconMessage } from './icons-js/message.js';  export { default as IconMessagesOff } from './icons-js/messages-off.js';  export { default as IconMessages } from './icons-js/messages.js';  export { default as IconMeteor } from './icons-js/meteor.js'; +export { default as IconMickey } from './icons-js/mickey.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'; @@ -1973,8 +1987,11 @@ export { default as IconTextDecrease } from './icons-js/text-decrease.js';  export { default as IconTextDirectionLtr } from './icons-js/text-direction-ltr.js';  export { default as IconTextDirectionRtl } from './icons-js/text-direction-rtl.js';  export { default as IconTextIncrease } from './icons-js/text-increase.js'; +export { default as IconTextOrientation } from './icons-js/text-orientation.js'; +export { default as IconTextPlus } from './icons-js/text-plus.js';  export { default as IconTextRecognition } from './icons-js/text-recognition.js';  export { default as IconTextResize } from './icons-js/text-resize.js'; +export { default as IconTextSpellcheck } from './icons-js/text-spellcheck.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'; @@ -2156,5 +2173,6 @@ export { default as IconZoomOutArea } from './icons-js/zoom-out-area.js';  export { default as IconZoomOut } from './icons-js/zoom-out.js';  export { default as IconZoomPan } from './icons-js/zoom-pan.js';  export { default as IconZoomQuestion } from './icons-js/zoom-question.js'; +export { default as IconZoomReplace } from './icons-js/zoom-replace.js';  export { default as IconZoomReset } from './icons-js/zoom-reset.js';  export { default as IconZzz } from './icons-js/zzz.js'; | 
