diff options
author | codecalm <codecalm@gmail.com> | 2022-08-16 23:10:58 +0200 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2022-08-16 23:10:58 +0200 |
commit | 4b1f94352c68535e27a417f6f9073447bc74e35a (patch) | |
tree | c458bd7fb26a0fb295809fd7d4dcb4f1e1e3b827 /icons-react/icons-js | |
parent | icons fixes (diff) | |
download | tabler-icons-4b1f94352c68535e27a417f6f9073447bc74e35a.tar.xz |
Release 1.83.0v1.83.0
Diffstat (limited to 'icons-react/icons-js')
-rw-r--r-- | icons-react/icons-js/mood-angry.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-annoyed-2.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-annoyed.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-nerd.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-sad-2.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-sad-dizzy.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-sad-squint.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-sick.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-silence.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-smile-beam.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-smile-dizzy.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-tongue-wink-2.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-tongue-wink.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-unamused.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-wink-2.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-wink.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-wrrr.js | 12 | ||||
-rw-r--r-- | icons-react/icons-js/mood-xd.js | 12 |
18 files changed, 216 insertions, 0 deletions
diff --git a/icons-react/icons-js/mood-angry.js b/icons-react/icons-js/mood-angry.js new file mode 100644 index 00000000..57adb215 --- /dev/null +++ b/icons-react/icons-js/mood-angry.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodAngry({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-angry" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z" /><path d="M8 9l2 1" /><path d="M16 9l-2 1" /><path d="M14.5 16.05a3.5 3.5 0 0 0 -5 0" /></svg>; +} + +export default IconMoodAngry;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-annoyed-2.js b/icons-react/icons-js/mood-annoyed-2.js new file mode 100644 index 00000000..a3bd2cf9 --- /dev/null +++ b/icons-react/icons-js/mood-annoyed-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodAnnoyed2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-annoyed-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" /><circle transform="matrix(-1 0 0 1 24 0)" cx={12} cy={12} r={9} /><path d="M15 14c-2 0 -3 1 -3.5 2.05" /><path d="M10 9.25c-.5 1 -2.5 1 -3 0" /><path d="M17 9.25c-.5 1 -2.5 1 -3 0" /></svg>; +} + +export default IconMoodAnnoyed2;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-annoyed.js b/icons-react/icons-js/mood-annoyed.js new file mode 100644 index 00000000..ae53a887 --- /dev/null +++ b/icons-react/icons-js/mood-annoyed.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodAnnoyed({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-annoyed" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z" /><path d="M15 14c-2 0 -3 1 -3.5 2.05" /><path d="M9 10h-.01" /><path d="M15 10h-.01" /></svg>; +} + +export default IconMoodAnnoyed;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-nerd.js b/icons-react/icons-js/mood-nerd.js new file mode 100644 index 00000000..c20888d8 --- /dev/null +++ b/icons-react/icons-js/mood-nerd.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodNerd({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-nerd" 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={8} cy={10} r={2} /><circle cx={16} cy={10} r={2} /><path d="M9.5 15a3.5 3.5 0 0 0 5 0" /><path d="M3.5 9h2.5" /><path d="M18 9h2.5" /><path d="M10 9.5c1.333 -1.333 2.667 -1.333 4 0" /></svg>; +} + +export default IconMoodNerd;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-sad-2.js b/icons-react/icons-js/mood-sad-2.js new file mode 100644 index 00000000..c6bb61b7 --- /dev/null +++ b/icons-react/icons-js/mood-sad-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodSad2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-sad-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" /><circle cx={12} cy={12} r={9} /><path d="M14.5 16.05a3.5 3.5 0 0 0 -5 0" /><path d="M10 9.25c-.5 1 -2.5 1 -3 0" /><path d="M17 9.25c-.5 1 -2.5 1 -3 0" /></svg>; +} + +export default IconMoodSad2;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-sad-dizzy.js b/icons-react/icons-js/mood-sad-dizzy.js new file mode 100644 index 00000000..c0c2e36d --- /dev/null +++ b/icons-react/icons-js/mood-sad-dizzy.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodSadDizzy({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-sad-dizzy" 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="M14.5 16.05a3.5 3.5 0 0 0 -5 0" /><path d="M8 9l2 2" /><path d="M10 9l-2 2" /><path d="M14 9l2 2" /><path d="M16 9l-2 2" /></svg>; +} + +export default IconMoodSadDizzy;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-sad-squint.js b/icons-react/icons-js/mood-sad-squint.js new file mode 100644 index 00000000..92b78dcf --- /dev/null +++ b/icons-react/icons-js/mood-sad-squint.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodSadSquint({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-sad-squint" 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="M14.5 16.05a3.5 3.5 0 0 0 -5 0" /><path d="M8.5 11.5l1.5 -1.5l-1.5 -1.5" /><path d="M15.5 11.5l-1.5 -1.5l1.5 -1.5" /></svg>; +} + +export default IconMoodSadSquint;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-sick.js b/icons-react/icons-js/mood-sick.js new file mode 100644 index 00000000..cec07926 --- /dev/null +++ b/icons-react/icons-js/mood-sick.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodSick({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-sick" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z" /><path d="M9 10h-.01" /><path d="M15 10h-.01" /><path d="M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1" /></svg>; +} + +export default IconMoodSick;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-silence.js b/icons-react/icons-js/mood-silence.js new file mode 100644 index 00000000..6705853c --- /dev/null +++ b/icons-react/icons-js/mood-silence.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodSilence({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-silence" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z" /><path d="M9 10h-.01" /><path d="M15 10h-.01" /><path d="M8 15h8" /><path d="M9 14v2" /><path d="M12 14v2" /><path d="M15 14v2" /></svg>; +} + +export default IconMoodSilence;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-smile-beam.js b/icons-react/icons-js/mood-smile-beam.js new file mode 100644 index 00000000..94d8e4a8 --- /dev/null +++ b/icons-react/icons-js/mood-smile-beam.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodSmileBeam({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-smile-beam" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z" /><path d="M10 10c-.5 -1 -2.5 -1 -3 0" /><path d="M17 10c-.5 -1 -2.5 -1 -3 0" /><path d="M14.5 15a3.5 3.5 0 0 1 -5 0" /></svg>; +} + +export default IconMoodSmileBeam;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-smile-dizzy.js b/icons-react/icons-js/mood-smile-dizzy.js new file mode 100644 index 00000000..0532e55e --- /dev/null +++ b/icons-react/icons-js/mood-smile-dizzy.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodSmileDizzy({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-smile-dizzy" 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="M14.5 15a3.5 3.5 0 0 1 -5 0" /><path d="M8 9l2 2" /><path d="M10 9l-2 2" /><path d="M14 9l2 2" /><path d="M16 9l-2 2" /></svg>; +} + +export default IconMoodSmileDizzy;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-tongue-wink-2.js b/icons-react/icons-js/mood-tongue-wink-2.js new file mode 100644 index 00000000..3f2b4d58 --- /dev/null +++ b/icons-react/icons-js/mood-tongue-wink-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodTongueWink2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-tongue-wink-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" /><circle cx={12} cy={12} r={9} /><circle transform="matrix(-1 0 0 1 24 0)" cx={12} cy={12} r={9} /><path d="M15 10h-.01" /><path d="M10 14l4 2a2 2 0 1 1 -4 0v-2z" /><path d="M7 10c.5 -1 2.5 -1 3 0" /></svg>; +} + +export default IconMoodTongueWink2;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-tongue-wink.js b/icons-react/icons-js/mood-tongue-wink.js new file mode 100644 index 00000000..ff9e4f5c --- /dev/null +++ b/icons-react/icons-js/mood-tongue-wink.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodTongueWink({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-tongue-wink" 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 transform="matrix(-1 0 0 1 24 0)" cx={12} cy={12} r={9} /><circle cx={12} cy={12} r={9} /><path d="M9 10h.01" /><path d="M10 14v2a2 2 0 1 0 4 0v-2m1.5 0h-7" /><path d="M17 10c-.5 -1 -2.5 -1 -3 0" /></svg>; +} + +export default IconMoodTongueWink;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-unamused.js b/icons-react/icons-js/mood-unamused.js new file mode 100644 index 00000000..4a47508b --- /dev/null +++ b/icons-react/icons-js/mood-unamused.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodUnamused({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-unamused" 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="M11 16l4 -1.5" /><path d="M10 10c-.5 -1 -2.5 -1 -3 0" /><path d="M17 10c-.5 -1 -2.5 -1 -3 0" /></svg>; +} + +export default IconMoodUnamused;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-wink-2.js b/icons-react/icons-js/mood-wink-2.js new file mode 100644 index 00000000..e6af9758 --- /dev/null +++ b/icons-react/icons-js/mood-wink-2.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodWink2({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-wink-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 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z" /><path d="M9 10h-.01" /><path d="M14.5 15a3.5 3.5 0 0 1 -5 0" /><path d="M15.5 8.5l-1.5 1.5l1.5 1.5" /></svg>; +} + +export default IconMoodWink2;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-wink.js b/icons-react/icons-js/mood-wink.js new file mode 100644 index 00000000..18320543 --- /dev/null +++ b/icons-react/icons-js/mood-wink.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodWink({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-wink" 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="M15 10h.01" /><path d="M9.5 15a3.5 3.5 0 0 0 5 0" /><path d="M8.5 8.5l1.5 1.5l-1.5 1.5" /></svg>; +} + +export default IconMoodWink;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-wrrr.js b/icons-react/icons-js/mood-wrrr.js new file mode 100644 index 00000000..5f585951 --- /dev/null +++ b/icons-react/icons-js/mood-wrrr.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodWrrr({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-wrrr" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M12 21a9 9 0 1 1 0 -18a9 9 0 0 1 0 18z" /><path d="M8 16l1 -1l1.5 1l1.5 -1l1.5 1l1.5 -1l1 1" /><path d="M8.5 11.5l1.5 -1.5l-1.5 -1.5" /><path d="M15.5 11.5l-1.5 -1.5l1.5 -1.5" /></svg>; +} + +export default IconMoodWrrr;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-xd.js b/icons-react/icons-js/mood-xd.js new file mode 100644 index 00000000..2b7c661f --- /dev/null +++ b/icons-react/icons-js/mood-xd.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconMoodXd({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-mood-xd" 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 transform="matrix(-1 0 0 1 24 0)" cx={12} cy={12} r={9} /><path d="M9 14h6a3 3 0 0 1 -6 0z" /><path d="M9 8l6 3" /><path d="M9 11l6 -3" /></svg>; +} + +export default IconMoodXd;
\ No newline at end of file |