diff options
Diffstat (limited to 'icons-react')
-rw-r--r-- | icons-react/icons-js/divide.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/file-search.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/map-pins.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/pin.js | 2 | ||||
-rw-r--r-- | icons-react/icons-js/pinned-off.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/pinned.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/speakerphone.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/star-off.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/sun-off.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/tools-kitchen.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/trash-off.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/virus-off.js | 5 | ||||
-rw-r--r-- | icons-react/icons-js/virus-search.js | 5 | ||||
-rw-r--r-- | icons-react/index.d.ts | 12 | ||||
-rw-r--r-- | icons-react/index.js | 12 |
15 files changed, 85 insertions, 1 deletions
diff --git a/icons-react/icons-js/divide.js b/icons-react/icons-js/divide.js new file mode 100644 index 00000000..f5302cd2 --- /dev/null +++ b/icons-react/icons-js/divide.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDivide = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-divide" 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 fill="currentColor" cx={12} cy={6} r={1} /><circle fill="currentColor" cx={12} cy={18} r={1} /><line x1={5} y1={12} x2={19} y2={12} /></svg>; + +export default IconDivide;
\ No newline at end of file diff --git a/icons-react/icons-js/file-search.js b/icons-react/icons-js/file-search.js new file mode 100644 index 00000000..944da541 --- /dev/null +++ b/icons-react/icons-js/file-search.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileSearch = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-file-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="M14 3v4a1 1 0 0 0 1 1h4" /><path d="M12 21h-5a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v4.5" /><circle cx={16.5} cy={17.5} r={2.5} /><line x1={18.5} y1={19.5} x2={21} y2={22} /></svg>; + +export default IconFileSearch;
\ No newline at end of file diff --git a/icons-react/icons-js/map-pins.js b/icons-react/icons-js/map-pins.js new file mode 100644 index 00000000..b98875ef --- /dev/null +++ b/icons-react/icons-js/map-pins.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMapPins = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-map-pins" 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.828 9.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z" /><line x1={8} y1={7} x2={8} y2={7.01} /><path d="M18.828 17.828a4 4 0 1 0 -5.656 0l2.828 2.829l2.828 -2.829z" /><line x1={16} y1={15} x2={16} y2={15.01} /></svg>; + +export default IconMapPins;
\ No newline at end of file diff --git a/icons-react/icons-js/pin.js b/icons-react/icons-js/pin.js index 3924a8b0..0d1cabf5 100644 --- a/icons-react/icons-js/pin.js +++ b/icons-react/icons-js/pin.js @@ -1,5 +1,5 @@ import * as React from "react"; -const IconPin = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-pin" 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={4} y1={20} x2={9.5} y2={14.5} /><path d="M6 11l7 7l1 -1l1 -4l4 -4m-4 -4l-4 4l-4 1l-1 1" /><line x1={14} y1={4} x2={20} y2={10} /></svg>; +const IconPin = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-pin" 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 4.5l-4 4l-4 1.5l-1.5 1.5l7 7l1.5 -1.5l1.5 -4l4 -4" /><line x1={9} y1={15} x2={4.5} y2={19.5} /><line x1={14.5} y1={4} x2={20} y2={9.5} /></svg>; export default IconPin;
\ No newline at end of file diff --git a/icons-react/icons-js/pinned-off.js b/icons-react/icons-js/pinned-off.js new file mode 100644 index 00000000..266d76e3 --- /dev/null +++ b/icons-react/icons-js/pinned-off.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPinnedOff = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-pinned-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="M15 4.5l-3.249 3.249m-2.57 1.433l-2.181 .818l-1.5 1.5l7 7l1.5 -1.5l.82 -2.186m1.43 -2.563l3.25 -3.251" /><line x1={9} y1={15} x2={4.5} y2={19.5} /><line x1={14.5} y1={4} x2={20} y2={9.5} /></svg>; + +export default IconPinnedOff;
\ No newline at end of file diff --git a/icons-react/icons-js/pinned.js b/icons-react/icons-js/pinned.js new file mode 100644 index 00000000..4e164f39 --- /dev/null +++ b/icons-react/icons-js/pinned.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPinned = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-pinned" 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 4v6l-2 4v2h10v-2l-2 -4v-6" /><line x1={12} y1={16} x2={12} y2={21} /><line x1={8} y1={4} x2={16} y2={4} /></svg>; + +export default IconPinned;
\ No newline at end of file diff --git a/icons-react/icons-js/speakerphone.js b/icons-react/icons-js/speakerphone.js new file mode 100644 index 00000000..ecdc596f --- /dev/null +++ b/icons-react/icons-js/speakerphone.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSpeakerphone = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-speakerphone" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M18 8a3 3 0 0 1 0 6" /><path d="M10 8v11a1 1 0 0 1 -1 1h-1a1 1 0 0 1 -1 -1v-5" /><path d="M12 8h0l4.524 -3.77a0.9 .9 0 0 1 1.476 .692v12.156a0.9 .9 0 0 1 -1.476 .692l-4.524 -3.77h-8a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h8" /></svg>; + +export default IconSpeakerphone;
\ No newline at end of file diff --git a/icons-react/icons-js/star-off.js b/icons-react/icons-js/star-off.js new file mode 100644 index 00000000..629bed8b --- /dev/null +++ b/icons-react/icons-js/star-off.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconStarOff = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-star-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="M10.012 6.016l1.981 -4.014l3.086 6.253l6.9 1l-4.421 4.304m.012 4.01l.588 3.426l-6.158 -3.245l-6.172 3.245l1.179 -6.873l-5 -4.867l6.327 -.917" /></svg>; + +export default IconStarOff;
\ No newline at end of file diff --git a/icons-react/icons-js/sun-off.js b/icons-react/icons-js/sun-off.js new file mode 100644 index 00000000..6e6a24cb --- /dev/null +++ b/icons-react/icons-js/sun-off.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSunOff = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-sun-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="M16 12a4 4 0 0 0 -4 -4m-2.834 1.177a4 4 0 0 0 5.66 5.654" /><path d="M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7" /></svg>; + +export default IconSunOff;
\ No newline at end of file diff --git a/icons-react/icons-js/tools-kitchen.js b/icons-react/icons-js/tools-kitchen.js new file mode 100644 index 00000000..b0444e1b --- /dev/null +++ b/icons-react/icons-js/tools-kitchen.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconToolsKitchen = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-tools-kitchen" 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 3h8l-1 9h-6z" /><path d="M7 18h2v3h-2z" /><path d="M20 3v12h-5c-.023-3.681.184-7.406 5-12z" /><path d="M20 15v6h-1v-3" /><line x1={8} y1={12} x2={8} y2={18} /></svg>; + +export default IconToolsKitchen;
\ No newline at end of file diff --git a/icons-react/icons-js/trash-off.js b/icons-react/icons-js/trash-off.js new file mode 100644 index 00000000..dd52be86 --- /dev/null +++ b/icons-react/icons-js/trash-off.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTrashOff = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-trash-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="M4 7h3m4 0h9" /><line x1={10} y1={11} x2={10} y2={17} /><line x1={14} y1={14} x2={14} y2={17} /><path d="M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l.077 -.923" /><line x1={18.384} y1={14.373} x2={19} y2={7} /><path d="M9 5v-1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3" /></svg>; + +export default IconTrashOff;
\ No newline at end of file diff --git a/icons-react/icons-js/virus-off.js b/icons-react/icons-js/virus-off.js new file mode 100644 index 00000000..cf63f670 --- /dev/null +++ b/icons-react/icons-js/virus-off.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconVirusOff = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-virus-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="M8.469 8.46a5 5 0 0 0 7.058 7.084m1.386 -2.608a5 5 0 0 0 -5.826 -5.853" /><path d="M12 7v-4m-1 0h2" /><path d="M12 7v-4m-1 0h2" transform="rotate(45 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(90 12 12)" /><line x1={12} y1={3} x2={13} y2={3} transform="rotate(135 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(180 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(225 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(270 12 12)" /><line x1={12} y1={3} x2={11} y2={3} transform="rotate(315 12 12)" /></svg>; + +export default IconVirusOff;
\ No newline at end of file diff --git a/icons-react/icons-js/virus-search.js b/icons-react/icons-js/virus-search.js new file mode 100644 index 00000000..6b549581 --- /dev/null +++ b/icons-react/icons-js/virus-search.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconVirusSearch = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-virus-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="M17 12a5 5 0 1 0 -5 5" /><path d="M12 7v-4m-1 0h2" /><path d="M12 7v-4m-1 0h2" transform="rotate(45 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(90 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(180 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(225 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(270 12 12)" /><path d="M12 7v-4m-1 0h2" transform="rotate(315 12 12)" /><circle cx={17.5} cy={17.5} r={2.5} /><line x1={19.5} y1={19.5} x2={22} y2={22} /></svg>; + +export default IconVirusSearch;
\ No newline at end of file diff --git a/icons-react/index.d.ts b/icons-react/index.d.ts index 84b8c437..99dd0b31 100644 --- a/icons-react/index.d.ts +++ b/icons-react/index.d.ts @@ -326,6 +326,7 @@ export const IconDisabled2: TablerIcon; export const IconDisabled: TablerIcon; export const IconDisc: TablerIcon; export const IconDiscount: TablerIcon; +export const IconDivide: TablerIcon; export const IconDotsCircleHorizontal: TablerIcon; export const IconDotsDiagonal2: TablerIcon; export const IconDotsDiagonal: TablerIcon; @@ -361,6 +362,7 @@ export const IconFileMusic: TablerIcon; export const IconFileOff: TablerIcon; export const IconFilePhone: TablerIcon; export const IconFilePlus: TablerIcon; +export const IconFileSearch: TablerIcon; export const IconFileShredder: TablerIcon; export const IconFileSymlink: TablerIcon; export const IconFileText: TablerIcon; @@ -525,6 +527,7 @@ export const IconMan: TablerIcon; export const IconMap2: TablerIcon; export const IconMapPinOff: TablerIcon; export const IconMapPin: TablerIcon; +export const IconMapPins: TablerIcon; export const IconMap: TablerIcon; export const IconMarkdown: TablerIcon; export const IconMarquee: TablerIcon; @@ -607,6 +610,8 @@ export const IconPictureInPictureOn: TablerIcon; export const IconPictureInPicture: TablerIcon; export const IconPill: TablerIcon; export const IconPin: TablerIcon; +export const IconPinnedOff: TablerIcon; +export const IconPinned: TablerIcon; export const IconPlaneArrival: TablerIcon; export const IconPlaneDeparture: TablerIcon; export const IconPlane: TablerIcon; @@ -696,6 +701,7 @@ export const IconSocial: TablerIcon; export const IconSortAscending: TablerIcon; export const IconSortDescending: TablerIcon; export const IconSpace: TablerIcon; +export const IconSpeakerphone: TablerIcon; export const IconSquareCheck: TablerIcon; export const IconSquareDot: TablerIcon; export const IconSquareForbid2: TablerIcon; @@ -710,6 +716,7 @@ export const IconStairsDown: TablerIcon; export const IconStairsUp: TablerIcon; export const IconStairs: TablerIcon; export const IconStarHalf: TablerIcon; +export const IconStarOff: TablerIcon; export const IconStar: TablerIcon; export const IconStars: TablerIcon; export const IconSteeringWheel: TablerIcon; @@ -720,6 +727,7 @@ export const IconStrikethrough: TablerIcon; export const IconSubscript: TablerIcon; export const IconSubtask: TablerIcon; export const IconSum: TablerIcon; +export const IconSunOff: TablerIcon; export const IconSun: TablerIcon; export const IconSunset: TablerIcon; export const IconSunshine: TablerIcon; @@ -755,6 +763,7 @@ export const IconTir: TablerIcon; export const IconToggleLeft: TablerIcon; export const IconToggleRight: TablerIcon; export const IconTool: TablerIcon; +export const IconToolsKitchen: TablerIcon; export const IconTools: TablerIcon; export const IconTornado: TablerIcon; export const IconTournament: TablerIcon; @@ -762,6 +771,7 @@ export const IconTractor: TablerIcon; export const IconTrademark: TablerIcon; export const IconTrafficCone: TablerIcon; export const IconTrafficLights: TablerIcon; +export const IconTrashOff: TablerIcon; export const IconTrash: TablerIcon; export const IconTrees: TablerIcon; export const IconTrendingDown: TablerIcon; @@ -800,6 +810,8 @@ export const IconVideo: TablerIcon; export const IconViewfinder: TablerIcon; export const IconViewportNarrow: TablerIcon; export const IconViewportWide: TablerIcon; +export const IconVirusOff: TablerIcon; +export const IconVirusSearch: TablerIcon; export const IconVirus: TablerIcon; export const IconVolume2: TablerIcon; export const IconVolume3: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js index e68b3a4d..dec7d48c 100644 --- a/icons-react/index.js +++ b/icons-react/index.js @@ -320,6 +320,7 @@ export { default as IconDisabled2 } from './icons-js/disabled-2.js'; export { default as IconDisabled } from './icons-js/disabled.js'; export { default as IconDisc } from './icons-js/disc.js'; export { default as IconDiscount } from './icons-js/discount.js'; +export { default as IconDivide } from './icons-js/divide.js'; export { default as IconDotsCircleHorizontal } from './icons-js/dots-circle-horizontal.js'; export { default as IconDotsDiagonal2 } from './icons-js/dots-diagonal-2.js'; export { default as IconDotsDiagonal } from './icons-js/dots-diagonal.js'; @@ -355,6 +356,7 @@ export { default as IconFileMusic } from './icons-js/file-music.js'; export { default as IconFileOff } from './icons-js/file-off.js'; export { default as IconFilePhone } from './icons-js/file-phone.js'; export { default as IconFilePlus } from './icons-js/file-plus.js'; +export { default as IconFileSearch } from './icons-js/file-search.js'; export { default as IconFileShredder } from './icons-js/file-shredder.js'; export { default as IconFileSymlink } from './icons-js/file-symlink.js'; export { default as IconFileText } from './icons-js/file-text.js'; @@ -519,6 +521,7 @@ export { default as IconMan } from './icons-js/man.js'; export { default as IconMap2 } from './icons-js/map-2.js'; export { default as IconMapPinOff } from './icons-js/map-pin-off.js'; export { default as IconMapPin } from './icons-js/map-pin.js'; +export { default as IconMapPins } from './icons-js/map-pins.js'; export { default as IconMap } from './icons-js/map.js'; export { default as IconMarkdown } from './icons-js/markdown.js'; export { default as IconMarquee } from './icons-js/marquee.js'; @@ -601,6 +604,8 @@ export { default as IconPictureInPictureOn } from './icons-js/picture-in-picture export { default as IconPictureInPicture } from './icons-js/picture-in-picture.js'; export { default as IconPill } from './icons-js/pill.js'; export { default as IconPin } from './icons-js/pin.js'; +export { default as IconPinnedOff } from './icons-js/pinned-off.js'; +export { default as IconPinned } from './icons-js/pinned.js'; export { default as IconPlaneArrival } from './icons-js/plane-arrival.js'; export { default as IconPlaneDeparture } from './icons-js/plane-departure.js'; export { default as IconPlane } from './icons-js/plane.js'; @@ -690,6 +695,7 @@ export { default as IconSocial } from './icons-js/social.js'; export { default as IconSortAscending } from './icons-js/sort-ascending.js'; export { default as IconSortDescending } from './icons-js/sort-descending.js'; export { default as IconSpace } from './icons-js/space.js'; +export { default as IconSpeakerphone } from './icons-js/speakerphone.js'; export { default as IconSquareCheck } from './icons-js/square-check.js'; export { default as IconSquareDot } from './icons-js/square-dot.js'; export { default as IconSquareForbid2 } from './icons-js/square-forbid-2.js'; @@ -704,6 +710,7 @@ export { default as IconStairsDown } from './icons-js/stairs-down.js'; export { default as IconStairsUp } from './icons-js/stairs-up.js'; export { default as IconStairs } from './icons-js/stairs.js'; export { default as IconStarHalf } from './icons-js/star-half.js'; +export { default as IconStarOff } from './icons-js/star-off.js'; export { default as IconStar } from './icons-js/star.js'; export { default as IconStars } from './icons-js/stars.js'; export { default as IconSteeringWheel } from './icons-js/steering-wheel.js'; @@ -714,6 +721,7 @@ export { default as IconStrikethrough } from './icons-js/strikethrough.js'; export { default as IconSubscript } from './icons-js/subscript.js'; export { default as IconSubtask } from './icons-js/subtask.js'; export { default as IconSum } from './icons-js/sum.js'; +export { default as IconSunOff } from './icons-js/sun-off.js'; export { default as IconSun } from './icons-js/sun.js'; export { default as IconSunset } from './icons-js/sunset.js'; export { default as IconSunshine } from './icons-js/sunshine.js'; @@ -749,6 +757,7 @@ export { default as IconTir } from './icons-js/tir.js'; export { default as IconToggleLeft } from './icons-js/toggle-left.js'; export { default as IconToggleRight } from './icons-js/toggle-right.js'; export { default as IconTool } from './icons-js/tool.js'; +export { default as IconToolsKitchen } from './icons-js/tools-kitchen.js'; export { default as IconTools } from './icons-js/tools.js'; export { default as IconTornado } from './icons-js/tornado.js'; export { default as IconTournament } from './icons-js/tournament.js'; @@ -756,6 +765,7 @@ export { default as IconTractor } from './icons-js/tractor.js'; export { default as IconTrademark } from './icons-js/trademark.js'; export { default as IconTrafficCone } from './icons-js/traffic-cone.js'; export { default as IconTrafficLights } from './icons-js/traffic-lights.js'; +export { default as IconTrashOff } from './icons-js/trash-off.js'; export { default as IconTrash } from './icons-js/trash.js'; export { default as IconTrees } from './icons-js/trees.js'; export { default as IconTrendingDown } from './icons-js/trending-down.js'; @@ -794,6 +804,8 @@ export { default as IconVideo } from './icons-js/video.js'; export { default as IconViewfinder } from './icons-js/viewfinder.js'; export { default as IconViewportNarrow } from './icons-js/viewport-narrow.js'; export { default as IconViewportWide } from './icons-js/viewport-wide.js'; +export { default as IconVirusOff } from './icons-js/virus-off.js'; +export { default as IconVirusSearch } from './icons-js/virus-search.js'; export { default as IconVirus } from './icons-js/virus.js'; export { default as IconVolume2 } from './icons-js/volume-2.js'; export { default as IconVolume3 } from './icons-js/volume-3.js'; |