diff options
author | codecalm <codecalm@gmail.com> | 2020-09-23 21:04:23 +0200 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-09-23 21:04:23 +0200 |
commit | ac8d4a1701a0860951e8ed772f3b9336501f7a15 (patch) | |
tree | a528131a2a54aca9c31e2e69e612d991c4535d90 /icons-react | |
parent | Fixed icons: `clipboard-check`, `clipboard-list`, `clipboard-x`, `clipboard` (diff) | |
download | tabler-icons-ac8d4a1701a0860951e8ed772f3b9336501f7a15.tar.xz |
Release 1.26.0v1.26.0
Diffstat (limited to 'icons-react')
-rw-r--r-- | icons-react/icons-js/activity.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/biohazard.js | 2 | ||||
-rw-r--r-- | icons-react/icons-js/brand-appstore.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/brand-google-play.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/building-monument.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/circle-dashed.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/circle-dotted.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/device-mobile-vibration.js | 2 | ||||
-rw-r--r-- | icons-react/icons-js/devices-2.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/file-dislike.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/file-like.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/filter-off.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/mood-boy.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/notification.js | 2 | ||||
-rw-r--r-- | icons-react/icons-js/world-latitude.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/world-longitude.js | 5 | ||||
-rw-r--r-- | icons-react/index.d.ts | 14 | ||||
-rw-r--r-- | icons-react/index.js | 14 |
18 files changed, 94 insertions, 5 deletions
diff --git a/icons-react/icons-js/activity.js b/icons-react/icons-js/activity.js new file mode 100644 index 00000000..138dd243 --- /dev/null +++ b/icons-react/icons-js/activity.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconActivity = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-activity" 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 12h4l3 8l4 -16l3 8h4" /></svg>; + +export default IconActivity;
\ No newline at end of file diff --git a/icons-react/icons-js/biohazard.js b/icons-react/icons-js/biohazard.js index a853c59f..62d8a32b 100644 --- a/icons-react/icons-js/biohazard.js +++ b/icons-react/icons-js/biohazard.js @@ -1,5 +1,5 @@ import * as React from "react"; -const IconBiohazard = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-biohazard" 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={2} /><path d="M11.939 14c0.03 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-0.217 .005m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 .003m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0.005 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l0.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798" /></svg>; +const IconBiohazard = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-biohazard" 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={2} /><path d="M11.939 14c0 .173 .048 .351 .056 .533l0 .217a4.75 4.75 0 0 1 -4.533 4.745l-0.217 0m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 0m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l0.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798" /></svg>; export default IconBiohazard;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-appstore.js b/icons-react/icons-js/brand-appstore.js new file mode 100644 index 00000000..8c0e957b --- /dev/null +++ b/icons-react/icons-js/brand-appstore.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandAppstore = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-brand-appstore" 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="M8 16l1.106 -1.99m1.4 -2.522l2.494 -4.488" /><path d="M7 14h5m2.9 0h2.1" /><path d="M16 16l-2.51 -4.518m-1.487 -2.677l-1.003 -1.805" /></svg>; + +export default IconBrandAppstore;
\ No newline at end of file diff --git a/icons-react/icons-js/brand-google-play.js b/icons-react/icons-js/brand-google-play.js new file mode 100644 index 00000000..1278beb1 --- /dev/null +++ b/icons-react/icons-js/brand-google-play.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandGooglePlay = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-brand-google-play" 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 3.71v16.58a0.7 .7 0 0 0 1.05 .606l14.622 -8.42a0.55 .55 0 0 0 0 -.953l-14.622 -8.419a0.7 .7 0 0 0 -1.05 .607z" /><line x1={15} y1={9} x2={4.5} y2={20.5} /><line x1={4.5} y1={3.5} x2={15} y2={15} /></svg>; + +export default IconBrandGooglePlay;
\ No newline at end of file diff --git a/icons-react/icons-js/building-monument.js b/icons-react/icons-js/building-monument.js new file mode 100644 index 00000000..274e7874 --- /dev/null +++ b/icons-react/icons-js/building-monument.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBuildingMonument = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-building-monument" 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 18l2 -13l2 -2l2 2l2 13" /><path d="M5 21v-3h14v3" /><line x1={3} y1={21} x2={21} y2={21} /></svg>; + +export default IconBuildingMonument;
\ No newline at end of file diff --git a/icons-react/icons-js/circle-dashed.js b/icons-react/icons-js/circle-dashed.js new file mode 100644 index 00000000..b768502d --- /dev/null +++ b/icons-react/icons-js/circle-dashed.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCircleDashed = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-circle-dashed" 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.56 3.69a9 9 0 0 0 -2.92 1.95" /><path d="M3.69 8.56a9 9 0 0 0 -.69 3.44" /><path d="M3.69 15.44a9 9 0 0 0 1.95 2.92" /><path d="M8.56 20.31a9 9 0 0 0 3.44 .69" /><path d="M15.44 20.31a9 9 0 0 0 2.92 -1.95" /><path d="M20.31 15.44a9 9 0 0 0 .69 -3.44" /><path d="M20.31 8.56a9 9 0 0 0 -1.95 -2.92" /><path d="M15.44 3.69a9 9 0 0 0 -3.44 -.69" /></svg>; + +export default IconCircleDashed;
\ No newline at end of file diff --git a/icons-react/icons-js/circle-dotted.js b/icons-react/icons-js/circle-dotted.js new file mode 100644 index 00000000..47b7d347 --- /dev/null +++ b/icons-react/icons-js/circle-dotted.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCircleDotted = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-circle-dotted" 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={7.5} y1={4.21} x2={7.5} y2={4.22} /><line x1={4.21} y1={7.5} x2={4.21} y2={7.51} /><line x1={3} y1={12} x2={3} y2={12.01} /><line x1={4.21} y1={16.5} x2={4.21} y2={16.51} /><line x1={7.5} y1={19.79} x2={7.5} y2={19.8} /><line x1={12} y1={21} x2={12} y2={21.01} /><line x1={16.5} y1={19.79} x2={16.5} y2={19.8} /><line x1={19.79} y1={16.5} x2={19.79} y2={16.51} /><line x1={21} y1={12} x2={21} y2={12.01} /><line x1={19.79} y1={7.5} x2={19.79} y2={7.51} /><line x1={16.5} y1={4.21} x2={16.5} y2={4.22} /><line x1={12} y1={3} x2={12} y2={3.01} /></svg>; + +export default IconCircleDotted;
\ No newline at end of file diff --git a/icons-react/icons-js/device-mobile-vibration.js b/icons-react/icons-js/device-mobile-vibration.js index a1eba13e..55dd04ca 100644 --- a/icons-react/icons-js/device-mobile-vibration.js +++ b/icons-react/icons-js/device-mobile-vibration.js @@ -1,5 +1,5 @@ import * as React from "react"; -const IconDeviceMobileVibration = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-device-mobile-vibration" 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" /><g transform="rotate(27 12 12)"><rect x={7} y={4} width={10} height={16} rx={1} /><line x1={11} y1={5} x2={13} y2={5} /><line x1={12} y1={17} x2={12} y2={17.01} /></g><path d="M6 4l-2 1v2.5l-2 1v2.5" /><path d="M22 13v2.5l-2 1v2.5l-2 1" /></svg>; +const IconDeviceMobileVibration = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-device-mobile-vibration" 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={10} height={16} rx={1} /><line x1={8} y1={5} x2={10} y2={5} /><line x1={9} y1={17} x2={9} y2={17.01} /><path d="M20 6l-2 3l2 3l-2 3l2 3" /></svg>; export default IconDeviceMobileVibration;
\ No newline at end of file diff --git a/icons-react/icons-js/devices-2.js b/icons-react/icons-js/devices-2.js new file mode 100644 index 00000000..77b4019f --- /dev/null +++ b/icons-react/icons-js/devices-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDevices2 = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-devices-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 15h-6a1 1 0 0 1 -1 -1v-8a1 1 0 0 1 1 -1h6" /><rect x={13} y={4} width={8} height={16} rx={1} /><line x1={7} y1={19} x2={10} y2={19} /><line x1={17} y1={8} x2={17} y2={8.01} /><circle cx={17} cy={16} r={1} /><line x1={9} y1={15} x2={9} y2={19} /></svg>; + +export default IconDevices2;
\ No newline at end of file diff --git a/icons-react/icons-js/file-dislike.js b/icons-react/icons-js/file-dislike.js new file mode 100644 index 00000000..0b70e42d --- /dev/null +++ b/icons-react/icons-js/file-dislike.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileDislike = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-file-dislike" 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={14} width={3} height={5} rx={1} /><path d="M7 15a1 1 0 0 1 1 -1h3.756a1 1 0 0 1 .958 .713l1.2 3c.09 .303 .133 .63 -.056 .884c-.188 .254 -.542 .403 -.858 .403h-2v2.467a1.1 1.1 0 0 1 -2.015 .61l-1.985 -3.077v-4z" /><path d="M15 3v4a1 1 0 0 0 1 1h4" /><path d="M6 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.5" /></svg>; + +export default IconFileDislike;
\ No newline at end of file diff --git a/icons-react/icons-js/file-like.js b/icons-react/icons-js/file-like.js new file mode 100644 index 00000000..8dfc821d --- /dev/null +++ b/icons-react/icons-js/file-like.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileLike = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-file-like" 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={16} width={3} height={5} rx={1} /><path d="M7 20a1 1 0 0 0 1 1h3.756a1 1 0 0 0 .958 -.713l1.2 -3c.09 -.303 .133 -.63 -.056 -.884c-.188 -.254 -.542 -.403 -.858 -.403h-2v-2.467a1.1 1.1 0 0 0 -2.015 -.61l-1.985 3.077v4z" /><path d="M15 3v4a1 1 0 0 0 1 1h4" /><path d="M6 12.1v-7.1a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-2.3" /></svg>; + +export default IconFileLike;
\ No newline at end of file diff --git a/icons-react/icons-js/filter-off.js b/icons-react/icons-js/filter-off.js new file mode 100644 index 00000000..35379905 --- /dev/null +++ b/icons-react/icons-js/filter-off.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFilterOff = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-filter-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 5h9.5a1 1 0 0 1 .5 1.5l-4.049 4.454m-.951 3.046v5l-4 -3v-4l-5 -5.5a1 1 0 0 1 .18 -1.316" /></svg>; + +export default IconFilterOff;
\ No newline at end of file diff --git a/icons-react/icons-js/mood-boy.js b/icons-react/icons-js/mood-boy.js new file mode 100644 index 00000000..f8a1bd50 --- /dev/null +++ b/icons-react/icons-js/mood-boy.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMoodBoy = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-mood-boy" 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 4.5a9 9 0 0 1 3.864 5.89a2.5 2.5 0 0 1 -.29 4.36a9 9 0 0 1 -17.137 0a2.5 2.5 0 0 1 -.29 -4.36a9 9 0 0 1 3.746 -5.81" /><path d="M9.5 16a3.5 3.5 0 0 0 5 0" /><path d="M8.5 2c1.5 1 2.5 3.5 2.5 5" /><path d="M12.5 2c1.5 2 2 3.5 2 5" /><line x1={9} y1={12} x2={9.01} y2={12} /><line x1={15} y1={12} x2={15.01} y2={12} /></svg>; + +export default IconMoodBoy;
\ No newline at end of file diff --git a/icons-react/icons-js/notification.js b/icons-react/icons-js/notification.js index 87e9448e..7a70d25d 100644 --- a/icons-react/icons-js/notification.js +++ b/icons-react/icons-js/notification.js @@ -1,5 +1,5 @@ import * as React from "react"; -const IconNotification = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-notification" 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 7h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3" /><circle cx={16} cy={8} r={3} /></svg>; +const IconNotification = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-notification" 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 6h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3" /><circle cx={17} cy={7} r={3} /></svg>; export default IconNotification;
\ No newline at end of file diff --git a/icons-react/icons-js/world-latitude.js b/icons-react/icons-js/world-latitude.js new file mode 100644 index 00000000..50481571 --- /dev/null +++ b/icons-react/icons-js/world-latitude.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWorldLatitude = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-world-latitude" 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} /><line x1={4.6} y1={7} x2={19.4} y2={7} /><line x1={3} y1={12} x2={21} y2={12} /><line x1={4.6} y1={17} x2={19.4} y2={17} /></svg>; + +export default IconWorldLatitude;
\ No newline at end of file diff --git a/icons-react/icons-js/world-longitude.js b/icons-react/icons-js/world-longitude.js new file mode 100644 index 00000000..165f7461 --- /dev/null +++ b/icons-react/icons-js/world-longitude.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWorldLongitude = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-world-longitude" 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.5 3a11.2 11.2 0 0 0 0 18" /><path d="M12.5 3a11.2 11.2 0 0 1 0 18" /><line x1={12} y1={3} x2={12} y2={21} /></svg>; + +export default IconWorldLongitude;
\ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index 51745c73..8e8e9c5c 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -10,6 +10,7 @@ export const IconAB: TablerIcon; export const IconAccessPointOff: TablerIcon; export const IconAccessPoint: TablerIcon; export const IconAccessible: TablerIcon; +export const IconActivity: TablerIcon; export const IconAd: TablerIcon; export const IconAdjustmentsAlt: TablerIcon; export const IconAdjustmentsHorizontal: TablerIcon; @@ -125,6 +126,7 @@ export const IconBraces: TablerIcon; export const IconBrackets: TablerIcon; export const IconBrandAndroid: TablerIcon; export const IconBrandApple: TablerIcon; +export const IconBrandAppstore: TablerIcon; export const IconBrandBehance: TablerIcon; export const IconBrandChrome: TablerIcon; export const IconBrandCodepen: TablerIcon; @@ -141,6 +143,7 @@ export const IconBrandFramer: TablerIcon; export const IconBrandGithub: TablerIcon; export const IconBrandGitlab: TablerIcon; export const IconBrandGoogleDrive: TablerIcon; +export const IconBrandGooglePlay: TablerIcon; export const IconBrandGoogle: TablerIcon; export const IconBrandInstagram: TablerIcon; export const IconBrandLinkedin: TablerIcon; @@ -184,6 +187,7 @@ export const IconBuildingBridge: TablerIcon; export const IconBuildingChurch: TablerIcon; export const IconBuildingCommunity: TablerIcon; export const IconBuildingHospital: TablerIcon; +export const IconBuildingMonument: TablerIcon; export const IconBuildingPavilon: TablerIcon; export const IconBuildingSkyscraper: TablerIcon; export const IconBuildingStore: TablerIcon; @@ -238,6 +242,8 @@ export const IconChevronsUpLeft: TablerIcon; export const IconChevronsUpRight: TablerIcon; export const IconChevronsUp: TablerIcon; export const IconCircleCheck: TablerIcon; +export const IconCircleDashed: TablerIcon; +export const IconCircleDotted: TablerIcon; export const IconCircleMinus: TablerIcon; export const IconCirclePlus: TablerIcon; export const IconCircleSquare: TablerIcon; @@ -305,6 +311,7 @@ export const IconDeviceSpeaker: TablerIcon; export const IconDeviceTablet: TablerIcon; export const IconDeviceTv: TablerIcon; export const IconDeviceWatch: TablerIcon; +export const IconDevices2: TablerIcon; export const IconDevices: TablerIcon; export const IconDiamond: TablerIcon; export const IconDice: TablerIcon; @@ -339,9 +346,11 @@ export const IconFall: TablerIcon; export const IconFileCheck: TablerIcon; export const IconFileCode: TablerIcon; export const IconFileDiff: TablerIcon; +export const IconFileDislike: TablerIcon; export const IconFileDownload: TablerIcon; export const IconFileHorizontal: TablerIcon; export const IconFileInvoice: TablerIcon; +export const IconFileLike: TablerIcon; export const IconFileMinus: TablerIcon; export const IconFileMusic: TablerIcon; export const IconFileOff: TablerIcon; @@ -352,6 +361,7 @@ export const IconFileText: TablerIcon; export const IconFileUpload: TablerIcon; export const IconFileX: TablerIcon; export const IconFile: TablerIcon; +export const IconFilterOff: TablerIcon; export const IconFilter: TablerIcon; export const IconFingerprint: TablerIcon; export const IconFiretruck: TablerIcon; @@ -525,6 +535,7 @@ export const IconMicrophone: TablerIcon; export const IconMinimize: TablerIcon; export const IconMinus: TablerIcon; export const IconMist: TablerIcon; +export const IconMoodBoy: TablerIcon; export const IconMoodConfuzed: TablerIcon; export const IconMoodCry: TablerIcon; export const IconMoodHappy: TablerIcon; @@ -762,7 +773,6 @@ export const IconWand: TablerIcon; export const IconWaveSawTool: TablerIcon; export const IconWaveSine: TablerIcon; export const IconWaveSquare: TablerIcon; -export const IconWaveTriangle: TablerIcon; export const IconWifi0: TablerIcon; export const IconWifi1: TablerIcon; export const IconWifi2: TablerIcon; @@ -772,6 +782,8 @@ export const IconWind: TablerIcon; export const IconWiperWash: TablerIcon; export const IconWiper: TablerIcon; export const IconWoman: TablerIcon; +export const IconWorldLatitude: TablerIcon; +export const IconWorldLongitude: TablerIcon; export const IconWorld: TablerIcon; export const IconX: TablerIcon; export const IconYinYang: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index 674b35d5..b0051e28 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -4,6 +4,7 @@ export { default as IconAB } from './icons-js/a-b.js'; export { default as IconAccessPointOff } from './icons-js/access-point-off.js'; export { default as IconAccessPoint } from './icons-js/access-point.js'; export { default as IconAccessible } from './icons-js/accessible.js'; +export { default as IconActivity } from './icons-js/activity.js'; export { default as IconAd } from './icons-js/ad.js'; export { default as IconAdjustmentsAlt } from './icons-js/adjustments-alt.js'; export { default as IconAdjustmentsHorizontal } from './icons-js/adjustments-horizontal.js'; @@ -119,6 +120,7 @@ export { default as IconBraces } from './icons-js/braces.js'; export { default as IconBrackets } from './icons-js/brackets.js'; export { default as IconBrandAndroid } from './icons-js/brand-android.js'; export { default as IconBrandApple } from './icons-js/brand-apple.js'; +export { default as IconBrandAppstore } from './icons-js/brand-appstore.js'; export { default as IconBrandBehance } from './icons-js/brand-behance.js'; export { default as IconBrandChrome } from './icons-js/brand-chrome.js'; export { default as IconBrandCodepen } from './icons-js/brand-codepen.js'; @@ -135,6 +137,7 @@ export { default as IconBrandFramer } from './icons-js/brand-framer.js'; export { default as IconBrandGithub } from './icons-js/brand-github.js'; export { default as IconBrandGitlab } from './icons-js/brand-gitlab.js'; export { default as IconBrandGoogleDrive } from './icons-js/brand-google-drive.js'; +export { default as IconBrandGooglePlay } from './icons-js/brand-google-play.js'; export { default as IconBrandGoogle } from './icons-js/brand-google.js'; export { default as IconBrandInstagram } from './icons-js/brand-instagram.js'; export { default as IconBrandLinkedin } from './icons-js/brand-linkedin.js'; @@ -178,6 +181,7 @@ export { default as IconBuildingBridge } from './icons-js/building-bridge.js'; export { default as IconBuildingChurch } from './icons-js/building-church.js'; export { default as IconBuildingCommunity } from './icons-js/building-community.js'; export { default as IconBuildingHospital } from './icons-js/building-hospital.js'; +export { default as IconBuildingMonument } from './icons-js/building-monument.js'; export { default as IconBuildingPavilon } from './icons-js/building-pavilon.js'; export { default as IconBuildingSkyscraper } from './icons-js/building-skyscraper.js'; export { default as IconBuildingStore } from './icons-js/building-store.js'; @@ -232,6 +236,8 @@ export { default as IconChevronsUpLeft } from './icons-js/chevrons-up-left.js'; export { default as IconChevronsUpRight } from './icons-js/chevrons-up-right.js'; export { default as IconChevronsUp } from './icons-js/chevrons-up.js'; export { default as IconCircleCheck } from './icons-js/circle-check.js'; +export { default as IconCircleDashed } from './icons-js/circle-dashed.js'; +export { default as IconCircleDotted } from './icons-js/circle-dotted.js'; export { default as IconCircleMinus } from './icons-js/circle-minus.js'; export { default as IconCirclePlus } from './icons-js/circle-plus.js'; export { default as IconCircleSquare } from './icons-js/circle-square.js'; @@ -299,6 +305,7 @@ export { default as IconDeviceSpeaker } from './icons-js/device-speaker.js'; export { default as IconDeviceTablet } from './icons-js/device-tablet.js'; export { default as IconDeviceTv } from './icons-js/device-tv.js'; export { default as IconDeviceWatch } from './icons-js/device-watch.js'; +export { default as IconDevices2 } from './icons-js/devices-2.js'; export { default as IconDevices } from './icons-js/devices.js'; export { default as IconDiamond } from './icons-js/diamond.js'; export { default as IconDice } from './icons-js/dice.js'; @@ -333,9 +340,11 @@ export { default as IconFall } from './icons-js/fall.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'; +export { default as IconFileDislike } from './icons-js/file-dislike.js'; export { default as IconFileDownload } from './icons-js/file-download.js'; export { default as IconFileHorizontal } from './icons-js/file-horizontal.js'; export { default as IconFileInvoice } from './icons-js/file-invoice.js'; +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'; @@ -346,6 +355,7 @@ 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 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'; export { default as IconFingerprint } from './icons-js/fingerprint.js'; export { default as IconFiretruck } from './icons-js/firetruck.js'; @@ -519,6 +529,7 @@ export { default as IconMicrophone } from './icons-js/microphone.js'; export { default as IconMinimize } from './icons-js/minimize.js'; export { default as IconMinus } from './icons-js/minus.js'; export { default as IconMist } from './icons-js/mist.js'; +export { default as IconMoodBoy } from './icons-js/mood-boy.js'; export { default as IconMoodConfuzed } from './icons-js/mood-confuzed.js'; export { default as IconMoodCry } from './icons-js/mood-cry.js'; export { default as IconMoodHappy } from './icons-js/mood-happy.js'; @@ -756,7 +767,6 @@ export { default as IconWand } from './icons-js/wand.js'; export { default as IconWaveSawTool } from './icons-js/wave-saw-tool.js'; export { default as IconWaveSine } from './icons-js/wave-sine.js'; export { default as IconWaveSquare } from './icons-js/wave-square.js'; -export { default as IconWaveTriangle } from './icons-js/wave-triangle.js'; export { default as IconWifi0 } from './icons-js/wifi-0.js'; export { default as IconWifi1 } from './icons-js/wifi-1.js'; export { default as IconWifi2 } from './icons-js/wifi-2.js'; @@ -766,6 +776,8 @@ export { default as IconWind } from './icons-js/wind.js'; export { default as IconWiperWash } from './icons-js/wiper-wash.js'; export { default as IconWiper } from './icons-js/wiper.js'; export { default as IconWoman } from './icons-js/woman.js'; +export { default as IconWorldLatitude } from './icons-js/world-latitude.js'; +export { default as IconWorldLongitude } from './icons-js/world-longitude.js'; export { default as IconWorld } from './icons-js/world.js'; export { default as IconX } from './icons-js/x.js'; export { default as IconYinYang } from './icons-js/yin-yang.js'; |