@viraui/react 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/avatar/avatar.guide.json +20 -0
- package/dist/button/button.guide.json +20 -0
- package/dist/catalog.json +110 -0
- package/dist/clamp-text/clamp-text.guide.json +23 -0
- package/dist/components/avatar/avatar.css +55 -0
- package/dist/components/avatar/avatar.d.ts +50 -0
- package/dist/components/avatar/avatar.js +17 -0
- package/dist/components/avatar/index.d.ts +2 -0
- package/dist/components/avatar/index.js +1 -0
- package/dist/components/basic-input/basic-input.css +45 -0
- package/dist/components/basic-input/basic-input.d.ts +14 -0
- package/dist/components/basic-input/basic-input.js +17 -0
- package/dist/components/basic-input/field-helper-copy.d.ts +13 -0
- package/dist/components/basic-input/field-helper-copy.js +25 -0
- package/dist/components/basic-input/index.d.ts +2 -0
- package/dist/components/basic-input/index.js +1 -0
- package/dist/components/basic-input/input-control-group.d.ts +26 -0
- package/dist/components/basic-input/input-control-group.js +8 -0
- package/dist/components/button/button.css +156 -0
- package/dist/components/button/button.d.ts +46 -0
- package/dist/components/button/button.js +17 -0
- package/dist/components/button/index.d.ts +2 -0
- package/dist/components/button/index.js +1 -0
- package/dist/components/clamp-text/clamp-text.css +12 -0
- package/dist/components/clamp-text/clamp-text.d.ts +39 -0
- package/dist/components/clamp-text/clamp-text.js +24 -0
- package/dist/components/clamp-text/index.d.ts +2 -0
- package/dist/components/clamp-text/index.js +1 -0
- package/dist/components/elevator/elevator.d.ts +52 -0
- package/dist/components/elevator/elevator.js +29 -0
- package/dist/components/elevator/index.d.ts +2 -0
- package/dist/components/elevator/index.js +1 -0
- package/dist/components/icon/icon.css +7 -0
- package/dist/components/icon/icon.d.ts +9 -0
- package/dist/components/icon/icon.js +11 -0
- package/dist/components/icon/index.d.ts +2 -0
- package/dist/components/icon/index.js +1 -0
- package/dist/components/icon-button/icon-button.d.ts +31 -0
- package/dist/components/icon-button/icon-button.js +3 -0
- package/dist/components/icon-button/index.d.ts +2 -0
- package/dist/components/icon-button/index.js +1 -0
- package/dist/components/index.d.ts +17 -0
- package/dist/components/index.js +17 -0
- package/dist/components/select/index.d.ts +2 -0
- package/dist/components/select/index.js +1 -0
- package/dist/components/select/select-group.d.ts +12 -0
- package/dist/components/select/select-group.js +10 -0
- package/dist/components/select/select-indicator-slot.d.ts +12 -0
- package/dist/components/select/select-indicator-slot.js +11 -0
- package/dist/components/select/select-option.d.ts +16 -0
- package/dist/components/select/select-option.js +11 -0
- package/dist/components/select/select-separator.d.ts +9 -0
- package/dist/components/select/select-separator.js +7 -0
- package/dist/components/select/select.css +194 -0
- package/dist/components/select/select.d.ts +66 -0
- package/dist/components/select/select.js +35 -0
- package/dist/components/skeleton/index.d.ts +2 -0
- package/dist/components/skeleton/index.js +1 -0
- package/dist/components/skeleton/skeleton.css +36 -0
- package/dist/components/skeleton/skeleton.d.ts +51 -0
- package/dist/components/skeleton/skeleton.js +17 -0
- package/dist/components/slider/index.d.ts +2 -0
- package/dist/components/slider/index.js +1 -0
- package/dist/components/slider/slider-control.css +71 -0
- package/dist/components/slider/slider-control.d.ts +8 -0
- package/dist/components/slider/slider-control.js +22 -0
- package/dist/components/slider/slider-utils.d.ts +2 -0
- package/dist/components/slider/slider-utils.js +4 -0
- package/dist/components/slider/slider.css +64 -0
- package/dist/components/slider/slider.d.ts +70 -0
- package/dist/components/slider/slider.js +19 -0
- package/dist/components/spinner/index.d.ts +2 -0
- package/dist/components/spinner/index.js +1 -0
- package/dist/components/spinner/spinner.css +45 -0
- package/dist/components/spinner/spinner.d.ts +17 -0
- package/dist/components/spinner/spinner.js +8 -0
- package/dist/components/stack/index.d.ts +2 -0
- package/dist/components/stack/index.js +1 -0
- package/dist/components/stack/stack.css +57 -0
- package/dist/components/stack/stack.d.ts +104 -0
- package/dist/components/stack/stack.js +38 -0
- package/dist/components/surface/index.d.ts +2 -0
- package/dist/components/surface/index.js +1 -0
- package/dist/components/surface/surface.css +61 -0
- package/dist/components/surface/surface.d.ts +69 -0
- package/dist/components/surface/surface.js +43 -0
- package/dist/components/switch/index.d.ts +2 -0
- package/dist/components/switch/index.js +1 -0
- package/dist/components/switch/switch.css +73 -0
- package/dist/components/switch/switch.d.ts +54 -0
- package/dist/components/switch/switch.js +15 -0
- package/dist/components/text/index.d.ts +2 -0
- package/dist/components/text/index.js +1 -0
- package/dist/components/text/text.css +139 -0
- package/dist/components/text/text.d.ts +127 -0
- package/dist/components/text/text.js +43 -0
- package/dist/components/textarea/index.d.ts +2 -0
- package/dist/components/textarea/index.js +1 -0
- package/dist/components/textarea/textarea.css +45 -0
- package/dist/components/textarea/textarea.d.ts +56 -0
- package/dist/components/textarea/textarea.js +13 -0
- package/dist/components/textfield/index.d.ts +2 -0
- package/dist/components/textfield/index.js +1 -0
- package/dist/components/textfield/textfield.css +87 -0
- package/dist/components/textfield/textfield.d.ts +49 -0
- package/dist/components/textfield/textfield.js +14 -0
- package/dist/components/title/index.d.ts +2 -0
- package/dist/components/title/index.js +1 -0
- package/dist/components/title/title.css +126 -0
- package/dist/components/title/title.d.ts +117 -0
- package/dist/components/title/title.js +41 -0
- package/dist/core/elevation/elevation-types.d.ts +17 -0
- package/dist/core/elevation/elevation-types.js +4 -0
- package/dist/core/elevation/get-elevation-props.d.ts +12 -0
- package/dist/core/elevation/get-elevation-props.js +12 -0
- package/dist/core/props/intrinsic-vira-props.d.ts +23 -0
- package/dist/core/props/intrinsic-vira-props.js +10 -0
- package/dist/core/styles/resolve-axis-padding.d.ts +5 -0
- package/dist/core/styles/resolve-axis-padding.js +17 -0
- package/dist/core/theme/resolve-theme-value.d.ts +5 -0
- package/dist/core/theme/resolve-theme-value.js +7 -0
- package/dist/elevator/elevator.guide.json +23 -0
- package/dist/guides/consumption.json +44 -0
- package/dist/guides/theme-surface.json +61 -0
- package/dist/icon/icon.guide.json +23 -0
- package/dist/icon-button/icon-button.guide.json +20 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/dist/internal-icons/icon-registry.d.ts +248 -0
- package/dist/internal-icons/icon-registry.js +713 -0
- package/dist/internal-icons/icons/duo/AddSection.d.ts +7 -0
- package/dist/internal-icons/icons/duo/AddSection.js +13 -0
- package/dist/internal-icons/icons/duo/AiDeveloper.d.ts +7 -0
- package/dist/internal-icons/icons/duo/AiDeveloper.js +13 -0
- package/dist/internal-icons/icons/duo/AiLoading.d.ts +7 -0
- package/dist/internal-icons/icons/duo/AiLoading.js +13 -0
- package/dist/internal-icons/icons/duo/Album3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Album3.js +13 -0
- package/dist/internal-icons/icons/duo/ArchiveContent2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArchiveContent2.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowDown.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowDown.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowDownLeft.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowDownLeft.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowDownRight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowDownRight.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowLeft.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowLeft.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowRight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowRight.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowRotate.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowRotate.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseCheck.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseCheck.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseSlash.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseXmark.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseXmark.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowRotateClockwiseSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowRotateClockwiseSlash.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowUp.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowUp.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowUpLeft.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowUpLeft.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowUpRight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowUpRight.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowsFilter.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowsFilter.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowsToLineY2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowsToLineY2.js +13 -0
- package/dist/internal-icons/icons/duo/Birdhouse.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Birdhouse.js +13 -0
- package/dist/internal-icons/icons/duo/BookmarkList.d.ts +7 -0
- package/dist/internal-icons/icons/duo/BookmarkList.js +13 -0
- package/dist/internal-icons/icons/duo/BookmarkedBook.d.ts +7 -0
- package/dist/internal-icons/icons/duo/BookmarkedBook.js +13 -0
- package/dist/internal-icons/icons/duo/BookmarkedBook2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/BookmarkedBook2.js +13 -0
- package/dist/internal-icons/icons/duo/Box3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Box3.js +13 -0
- package/dist/internal-icons/icons/duo/BoxSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/BoxSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/BoxSparkle2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/BoxSparkle2.js +13 -0
- package/dist/internal-icons/icons/duo/Brochure.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Brochure.js +13 -0
- package/dist/internal-icons/icons/duo/ButtonPlus.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ButtonPlus.js +13 -0
- package/dist/internal-icons/icons/duo/Calculator3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Calculator3.js +13 -0
- package/dist/internal-icons/icons/duo/CaretDown.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CaretDown.js +13 -0
- package/dist/internal-icons/icons/duo/CaretLeft.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CaretLeft.js +13 -0
- package/dist/internal-icons/icons/duo/CaretRight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CaretRight.js +13 -0
- package/dist/internal-icons/icons/duo/CaretUp.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CaretUp.js +13 -0
- package/dist/internal-icons/icons/duo/Chart3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Chart3.js +13 -0
- package/dist/internal-icons/icons/duo/ChartBar.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChartBar.js +13 -0
- package/dist/internal-icons/icons/duo/ChartCandlestick2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChartCandlestick2.js +13 -0
- package/dist/internal-icons/icons/duo/ChatImage.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChatImage.js +13 -0
- package/dist/internal-icons/icons/duo/ChatInfo.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChatInfo.js +13 -0
- package/dist/internal-icons/icons/duo/ChatTask.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChatTask.js +13 -0
- package/dist/internal-icons/icons/duo/Check.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Check.js +13 -0
- package/dist/internal-icons/icons/duo/CheckBoxArrow.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CheckBoxArrow.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronDown.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronDown.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronExpandY.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronExpandY.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronLeft.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronLeft.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronLeftToLine.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronLeftToLine.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronRight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronRight.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronRightToLine.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronRightToLine.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronUp.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronUp.js +13 -0
- package/dist/internal-icons/icons/duo/Child.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Child.js +13 -0
- package/dist/internal-icons/icons/duo/CircleCoinIn.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleCoinIn.js +13 -0
- package/dist/internal-icons/icons/duo/CircleCoinOut.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleCoinOut.js +13 -0
- package/dist/internal-icons/icons/duo/CircleCoinPlus.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleCoinPlus.js +13 -0
- package/dist/internal-icons/icons/duo/CircleConversion.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleConversion.js +13 -0
- package/dist/internal-icons/icons/duo/CircleCross.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleCross.js +13 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowDown.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowDown.js +13 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowLeft.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowLeft.js +13 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowRight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowRight.js +13 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowUp.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowUp.js +13 -0
- package/dist/internal-icons/icons/duo/CircleHalfDottedChart2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleHalfDottedChart2.js +13 -0
- package/dist/internal-icons/icons/duo/ClockTime.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ClockTime.js +13 -0
- package/dist/internal-icons/icons/duo/CloneDashed3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CloneDashed3.js +13 -0
- package/dist/internal-icons/icons/duo/CloneImageDashed.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CloneImageDashed.js +13 -0
- package/dist/internal-icons/icons/duo/CloneVideoDashed.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CloneVideoDashed.js +13 -0
- package/dist/internal-icons/icons/duo/CloudeCode.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CloudeCode.js +13 -0
- package/dist/internal-icons/icons/duo/CoinStack.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CoinStack.js +13 -0
- package/dist/internal-icons/icons/duo/ConditionalLogic.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ConditionalLogic.js +13 -0
- package/dist/internal-icons/icons/duo/ConnectPlus.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ConnectPlus.js +13 -0
- package/dist/internal-icons/icons/duo/Connection3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Connection3.js +13 -0
- package/dist/internal-icons/icons/duo/CopyDelete.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CopyDelete.js +13 -0
- package/dist/internal-icons/icons/duo/CopyId.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CopyId.js +13 -0
- package/dist/internal-icons/icons/duo/Deaf.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Deaf.js +13 -0
- package/dist/internal-icons/icons/duo/DependencyLink.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DependencyLink.js +13 -0
- package/dist/internal-icons/icons/duo/DesktopDock.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DesktopDock.js +13 -0
- package/dist/internal-icons/icons/duo/DiamondSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DiamondSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/DocumentScan.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DocumentScan.js +13 -0
- package/dist/internal-icons/icons/duo/Dog2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Dog2.js +13 -0
- package/dist/internal-icons/icons/duo/DogLeash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DogLeash.js +13 -0
- package/dist/internal-icons/icons/duo/DogSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DogSlash.js +13 -0
- package/dist/internal-icons/icons/duo/DotFormation.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DotFormation.js +13 -0
- package/dist/internal-icons/icons/duo/DrawFinger.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DrawFinger.js +13 -0
- package/dist/internal-icons/icons/duo/Ear.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Ear.js +13 -0
- package/dist/internal-icons/icons/duo/EarSound.d.ts +7 -0
- package/dist/internal-icons/icons/duo/EarSound.js +13 -0
- package/dist/internal-icons/icons/duo/Embed.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Embed.js +13 -0
- package/dist/internal-icons/icons/duo/EnterDoor.d.ts +7 -0
- package/dist/internal-icons/icons/duo/EnterDoor.js +13 -0
- package/dist/internal-icons/icons/duo/EnterHome.d.ts +7 -0
- package/dist/internal-icons/icons/duo/EnterHome.js +13 -0
- package/dist/internal-icons/icons/duo/ExitDoor.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ExitDoor.js +13 -0
- package/dist/internal-icons/icons/duo/Export2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Export2.js +13 -0
- package/dist/internal-icons/icons/duo/EyeSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/EyeSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/FaceRobot.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FaceRobot.js +13 -0
- package/dist/internal-icons/icons/duo/FaceRobot2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FaceRobot2.js +13 -0
- package/dist/internal-icons/icons/duo/FaceRobot3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FaceRobot3.js +13 -0
- package/dist/internal-icons/icons/duo/FerrisWheel.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FerrisWheel.js +13 -0
- package/dist/internal-icons/icons/duo/FileExport.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FileExport.js +13 -0
- package/dist/internal-icons/icons/duo/FlagMenu.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FlagMenu.js +13 -0
- package/dist/internal-icons/icons/duo/FocusCenter.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FocusCenter.js +13 -0
- package/dist/internal-icons/icons/duo/FoodOrder.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FoodOrder.js +13 -0
- package/dist/internal-icons/icons/duo/FuelCan.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FuelCan.js +13 -0
- package/dist/internal-icons/icons/duo/FuelCan2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FuelCan2.js +13 -0
- package/dist/internal-icons/icons/duo/Gear3Sparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Gear3Sparkle.js +13 -0
- package/dist/internal-icons/icons/duo/GridSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/GridSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/HandHoldingGlobe.d.ts +7 -0
- package/dist/internal-icons/icons/duo/HandHoldingGlobe.js +13 -0
- package/dist/internal-icons/icons/duo/Handshake2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Handshake2.js +13 -0
- package/dist/internal-icons/icons/duo/Haptic.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Haptic.js +13 -0
- package/dist/internal-icons/icons/duo/HelpChat.d.ts +7 -0
- package/dist/internal-icons/icons/duo/HelpChat.js +13 -0
- package/dist/internal-icons/icons/duo/HexagonSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/HexagonSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/Hiking.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Hiking.js +13 -0
- package/dist/internal-icons/icons/duo/History2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/History2.js +13 -0
- package/dist/internal-icons/icons/duo/HorseHead.d.ts +7 -0
- package/dist/internal-icons/icons/duo/HorseHead.js +13 -0
- package/dist/internal-icons/icons/duo/HouseDollarSign.d.ts +7 -0
- package/dist/internal-icons/icons/duo/HouseDollarSign.js +13 -0
- package/dist/internal-icons/icons/duo/HouseMinus2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/HouseMinus2.js +13 -0
- package/dist/internal-icons/icons/duo/Images3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Images3.js +13 -0
- package/dist/internal-icons/icons/duo/Img4k.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Img4k.js +13 -0
- package/dist/internal-icons/icons/duo/InsertCrypto.d.ts +7 -0
- package/dist/internal-icons/icons/duo/InsertCrypto.js +13 -0
- package/dist/internal-icons/icons/duo/InsertDollar.d.ts +7 -0
- package/dist/internal-icons/icons/duo/InsertDollar.js +13 -0
- package/dist/internal-icons/icons/duo/InstantMoney.d.ts +7 -0
- package/dist/internal-icons/icons/duo/InstantMoney.js +13 -0
- package/dist/internal-icons/icons/duo/InvoiceIn.d.ts +7 -0
- package/dist/internal-icons/icons/duo/InvoiceIn.js +13 -0
- package/dist/internal-icons/icons/duo/InwardFlow.d.ts +7 -0
- package/dist/internal-icons/icons/duo/InwardFlow.js +13 -0
- package/dist/internal-icons/icons/duo/JoinedHands.d.ts +7 -0
- package/dist/internal-icons/icons/duo/JoinedHands.js +13 -0
- package/dist/internal-icons/icons/duo/LawShield.d.ts +7 -0
- package/dist/internal-icons/icons/duo/LawShield.js +13 -0
- package/dist/internal-icons/icons/duo/Lectern.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Lectern.js +13 -0
- package/dist/internal-icons/icons/duo/Lectern2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Lectern2.js +13 -0
- package/dist/internal-icons/icons/duo/LightSpark.d.ts +7 -0
- package/dist/internal-icons/icons/duo/LightSpark.js +13 -0
- package/dist/internal-icons/icons/duo/LightSpark2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/LightSpark2.js +13 -0
- package/dist/internal-icons/icons/duo/ListExport.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ListExport.js +13 -0
- package/dist/internal-icons/icons/duo/ListFavs3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ListFavs3.js +13 -0
- package/dist/internal-icons/icons/duo/ListFavs4.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ListFavs4.js +13 -0
- package/dist/internal-icons/icons/duo/LoadingStatus.d.ts +7 -0
- package/dist/internal-icons/icons/duo/LoadingStatus.js +13 -0
- package/dist/internal-icons/icons/duo/LoadingStatus2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/LoadingStatus2.js +13 -0
- package/dist/internal-icons/icons/duo/LockedChat.d.ts +7 -0
- package/dist/internal-icons/icons/duo/LockedChat.js +13 -0
- package/dist/internal-icons/icons/duo/MagicHat.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MagicHat.js +13 -0
- package/dist/internal-icons/icons/duo/MagicRabbit.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MagicRabbit.js +13 -0
- package/dist/internal-icons/icons/duo/MagnifierSparkle2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MagnifierSparkle2.js +13 -0
- package/dist/internal-icons/icons/duo/MediaLibrary2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MediaLibrary2.js +13 -0
- package/dist/internal-icons/icons/duo/Membership.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Membership.js +13 -0
- package/dist/internal-icons/icons/duo/Menu4.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Menu4.js +13 -0
- package/dist/internal-icons/icons/duo/MilitaryMedal.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MilitaryMedal.js +13 -0
- package/dist/internal-icons/icons/duo/MobileCircuit.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MobileCircuit.js +13 -0
- package/dist/internal-icons/icons/duo/MoneyRefund.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MoneyRefund.js +13 -0
- package/dist/internal-icons/icons/duo/MoneyRefund2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MoneyRefund2.js +13 -0
- package/dist/internal-icons/icons/duo/MotionAlongPath.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MotionAlongPath.js +13 -0
- package/dist/internal-icons/icons/duo/Msgs2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Msgs2.js +13 -0
- package/dist/internal-icons/icons/duo/Navigation.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Navigation.js +13 -0
- package/dist/internal-icons/icons/duo/NavigationHorizontal.d.ts +7 -0
- package/dist/internal-icons/icons/duo/NavigationHorizontal.js +13 -0
- package/dist/internal-icons/icons/duo/NavigationVertical.d.ts +7 -0
- package/dist/internal-icons/icons/duo/NavigationVertical.js +13 -0
- package/dist/internal-icons/icons/duo/ObjectSelection.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ObjectSelection.js +13 -0
- package/dist/internal-icons/icons/duo/OfficeUser.d.ts +7 -0
- package/dist/internal-icons/icons/duo/OfficeUser.js +13 -0
- package/dist/internal-icons/icons/duo/OpenExternal.d.ts +7 -0
- package/dist/internal-icons/icons/duo/OpenExternal.js +13 -0
- package/dist/internal-icons/icons/duo/OrbitSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/OrbitSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/OutwardFlow.d.ts +7 -0
- package/dist/internal-icons/icons/duo/OutwardFlow.js +13 -0
- package/dist/internal-icons/icons/duo/PaperPlaneFast.d.ts +7 -0
- package/dist/internal-icons/icons/duo/PaperPlaneFast.js +13 -0
- package/dist/internal-icons/icons/duo/Parachute.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Parachute.js +13 -0
- package/dist/internal-icons/icons/duo/Paw.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Paw.js +13 -0
- package/dist/internal-icons/icons/duo/Peace.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Peace.js +13 -0
- package/dist/internal-icons/icons/duo/PicnicTable.d.ts +7 -0
- package/dist/internal-icons/icons/duo/PicnicTable.js +13 -0
- package/dist/internal-icons/icons/duo/Pillow.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Pillow.js +13 -0
- package/dist/internal-icons/icons/duo/Playground.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Playground.js +13 -0
- package/dist/internal-icons/icons/duo/Playlist4.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Playlist4.js +13 -0
- package/dist/internal-icons/icons/duo/Plug3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Plug3.js +13 -0
- package/dist/internal-icons/icons/duo/Plug3Sparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Plug3Sparkle.js +13 -0
- package/dist/internal-icons/icons/duo/PlugOff.d.ts +7 -0
- package/dist/internal-icons/icons/duo/PlugOff.js +13 -0
- package/dist/internal-icons/icons/duo/PlugSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/PlugSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/PopEffect.d.ts +7 -0
- package/dist/internal-icons/icons/duo/PopEffect.js +13 -0
- package/dist/internal-icons/icons/duo/ProfileAnalytics.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ProfileAnalytics.js +13 -0
- package/dist/internal-icons/icons/duo/ProfileBasic.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ProfileBasic.js +13 -0
- package/dist/internal-icons/icons/duo/ProgressIndicator2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ProgressIndicator2.js +13 -0
- package/dist/internal-icons/icons/duo/QuickActions.d.ts +7 -0
- package/dist/internal-icons/icons/duo/QuickActions.js +13 -0
- package/dist/internal-icons/icons/duo/QuickTimer.d.ts +7 -0
- package/dist/internal-icons/icons/duo/QuickTimer.js +13 -0
- package/dist/internal-icons/icons/duo/Rabbit.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Rabbit.js +13 -0
- package/dist/internal-icons/icons/duo/Receipt3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Receipt3.js +13 -0
- package/dist/internal-icons/icons/duo/Receipt4.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Receipt4.js +13 -0
- package/dist/internal-icons/icons/duo/Redo2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Redo2.js +13 -0
- package/dist/internal-icons/icons/duo/Redo3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Redo3.js +13 -0
- package/dist/internal-icons/icons/duo/Refresh3AnticlockwiseSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Refresh3AnticlockwiseSlash.js +13 -0
- package/dist/internal-icons/icons/duo/Refresh3ClockwiseSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Refresh3ClockwiseSlash.js +13 -0
- package/dist/internal-icons/icons/duo/RefreshAnticlockwise.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RefreshAnticlockwise.js +13 -0
- package/dist/internal-icons/icons/duo/RefreshAnticlockwiseSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RefreshAnticlockwiseSlash.js +13 -0
- package/dist/internal-icons/icons/duo/RefreshClockwiseSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RefreshClockwiseSlash.js +13 -0
- package/dist/internal-icons/icons/duo/Refrigerator.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Refrigerator.js +13 -0
- package/dist/internal-icons/icons/duo/RemoteControl.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RemoteControl.js +13 -0
- package/dist/internal-icons/icons/duo/RemoteControl2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RemoteControl2.js +13 -0
- package/dist/internal-icons/icons/duo/ReportFile.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ReportFile.js +13 -0
- package/dist/internal-icons/icons/duo/Reposition.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Reposition.js +13 -0
- package/dist/internal-icons/icons/duo/Rerouting.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Rerouting.js +13 -0
- package/dist/internal-icons/icons/duo/Robot2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Robot2.js +13 -0
- package/dist/internal-icons/icons/duo/Robot3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Robot3.js +13 -0
- package/dist/internal-icons/icons/duo/Robot4.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Robot4.js +13 -0
- package/dist/internal-icons/icons/duo/RockOn.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RockOn.js +13 -0
- package/dist/internal-icons/icons/duo/RopeStanchions.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RopeStanchions.js +13 -0
- package/dist/internal-icons/icons/duo/Rotation3602.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Rotation3602.js +13 -0
- package/dist/internal-icons/icons/duo/SavedItems2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SavedItems2.js +13 -0
- package/dist/internal-icons/icons/duo/ScaleImg4k.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ScaleImg4k.js +13 -0
- package/dist/internal-icons/icons/duo/ScanImage.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ScanImage.js +13 -0
- package/dist/internal-icons/icons/duo/ScissorsSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ScissorsSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/Seatbelt.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Seatbelt.js +13 -0
- package/dist/internal-icons/icons/duo/ShakaHand.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ShakaHand.js +13 -0
- package/dist/internal-icons/icons/duo/ShapeRectangle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ShapeRectangle.js +13 -0
- package/dist/internal-icons/icons/duo/Shovel.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Shovel.js +13 -0
- package/dist/internal-icons/icons/duo/ShuffleSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ShuffleSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/SideProfileQuestion.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SideProfileQuestion.js +13 -0
- package/dist/internal-icons/icons/duo/SideProfileSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SideProfileSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/SidebarEdit.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SidebarEdit.js +13 -0
- package/dist/internal-icons/icons/duo/SlashCircle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SlashCircle.js +13 -0
- package/dist/internal-icons/icons/duo/Sliders4.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Sliders4.js +13 -0
- package/dist/internal-icons/icons/duo/Snail.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Snail.js +13 -0
- package/dist/internal-icons/icons/duo/Spiral.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Spiral.js +13 -0
- package/dist/internal-icons/icons/duo/SplitView.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SplitView.js +13 -0
- package/dist/internal-icons/icons/duo/SquareDashedSearchSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SquareDashedSearchSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/SquareDashedText.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SquareDashedText.js +13 -0
- package/dist/internal-icons/icons/duo/SquarePath.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SquarePath.js +13 -0
- package/dist/internal-icons/icons/duo/Star2Slash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Star2Slash.js +13 -0
- package/dist/internal-icons/icons/duo/StopSign.d.ts +7 -0
- package/dist/internal-icons/icons/duo/StopSign.js +13 -0
- package/dist/internal-icons/icons/duo/StopwatchBolt.d.ts +7 -0
- package/dist/internal-icons/icons/duo/StopwatchBolt.js +13 -0
- package/dist/internal-icons/icons/duo/SummitFlag.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SummitFlag.js +13 -0
- package/dist/internal-icons/icons/duo/Sunrise2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Sunrise2.js +13 -0
- package/dist/internal-icons/icons/duo/Task.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Task.js +13 -0
- package/dist/internal-icons/icons/duo/Task2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Task2.js +13 -0
- package/dist/internal-icons/icons/duo/TaskDebug.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TaskDebug.js +13 -0
- package/dist/internal-icons/icons/duo/TaskSearch.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TaskSearch.js +13 -0
- package/dist/internal-icons/icons/duo/Teepee.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Teepee.js +13 -0
- package/dist/internal-icons/icons/duo/TextAdjust.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TextAdjust.js +13 -0
- package/dist/internal-icons/icons/duo/TheatreMask.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TheatreMask.js +13 -0
- package/dist/internal-icons/icons/duo/TheatreMask2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TheatreMask2.js +13 -0
- package/dist/internal-icons/icons/duo/TimerProgress.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TimerProgress.js +13 -0
- package/dist/internal-icons/icons/duo/TimerProgress2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TimerProgress2.js +13 -0
- package/dist/internal-icons/icons/duo/TransactionSplit.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TransactionSplit.js +13 -0
- package/dist/internal-icons/icons/duo/Undo2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Undo2.js +13 -0
- package/dist/internal-icons/icons/duo/Undo3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Undo3.js +13 -0
- package/dist/internal-icons/icons/duo/UnicornHead.d.ts +7 -0
- package/dist/internal-icons/icons/duo/UnicornHead.js +13 -0
- package/dist/internal-icons/icons/duo/UserContact.d.ts +7 -0
- package/dist/internal-icons/icons/duo/UserContact.js +13 -0
- package/dist/internal-icons/icons/duo/UserVoice2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/UserVoice2.js +13 -0
- package/dist/internal-icons/icons/duo/VipBadge.d.ts +7 -0
- package/dist/internal-icons/icons/duo/VipBadge.js +13 -0
- package/dist/internal-icons/icons/duo/VoiceCaption.d.ts +7 -0
- package/dist/internal-icons/icons/duo/VoiceCaption.js +13 -0
- package/dist/internal-icons/icons/duo/WalletCoins.d.ts +7 -0
- package/dist/internal-icons/icons/duo/WalletCoins.js +13 -0
- package/dist/internal-icons/icons/duo/Weight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Weight.js +13 -0
- package/dist/internal-icons/icons/duo/index.d.ts +245 -0
- package/dist/internal-icons/icons/duo/index.js +245 -0
- package/dist/preflight.css +1 -0
- package/dist/select/select.guide.json +17 -0
- package/dist/skeleton/skeleton.guide.json +23 -0
- package/dist/slider/slider.guide.json +23 -0
- package/dist/spinner/spinner.guide.json +23 -0
- package/dist/stack/stack.guide.json +20 -0
- package/dist/surface/surface.guide.json +23 -0
- package/dist/switch/switch.guide.json +23 -0
- package/dist/text/text.guide.json +20 -0
- package/dist/textarea/textarea.guide.json +17 -0
- package/dist/textfield/textfield.guide.json +20 -0
- package/dist/title/title.guide.json +20 -0
- package/package.json +64 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface Receipt3Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Receipt3: React.ForwardRefExoticComponent<Omit<Receipt3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Receipt3;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Receipt3 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M14.75 17a.75.75 0 0 1-.378-.102l-2.605-1.52-2.365 1.505a.75.75 0 0 1-.804 0l-2.365-1.505-2.605 1.52A.75.75 0 0 1 2.5 16.25V3.75A2.753 2.753 0 0 1 5.25 1h3.922a2.73 2.73 0 0 1 1.944.806l3.578 3.578c.52.52.806 1.21.806 1.945v8.921a.75.75 0 0 1-.75.75", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m14.694 5.384-3.578-3.578A2.7 2.7 0 0 0 10 1.14V5.5a1 1 0 0 0 1 1h4.36a2.7 2.7 0 0 0-.666-1.116" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Receipt3.displayName = 'Receipt3';
|
|
13
|
+
export default Receipt3;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface Receipt4Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Receipt4: React.ForwardRefExoticComponent<Omit<Receipt4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Receipt4;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Receipt4 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M14.75 17a.75.75 0 0 1-.378-.102l-2.605-1.52-2.365 1.505a.75.75 0 0 1-.804 0l-2.365-1.505-2.605 1.52A.75.75 0 0 1 2.5 16.25V3.75A2.753 2.753 0 0 1 5.25 1h3.922a2.73 2.73 0 0 1 1.944.806l3.578 3.578c.52.52.806 1.21.806 1.945v8.921a.75.75 0 0 1-.75.75", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m14.694 5.384-3.578-3.578A2.7 2.7 0 0 0 10 1.14V5.5a1 1 0 0 0 1 1h4.36a2.7 2.7 0 0 0-.666-1.116M8 8.5H6.25a.75.75 0 0 1 0-1.5H8a.75.75 0 0 1 0 1.5m3.75 3h-5.5a.75.75 0 0 1 0-1.5h5.5a.75.75 0 0 1 0 1.5" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Receipt4.displayName = 'Receipt4';
|
|
13
|
+
export default Receipt4;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface Redo2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Redo2: React.ForwardRefExoticComponent<Omit<Redo2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Redo2;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Redo2 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M9 16.5c-4.136 0-7.5-3.364-7.5-7.5S4.864 1.5 9 1.5a7.45 7.45 0 0 1 5.303 2.197.75.75 0 1 1-1.06 1.06A5.96 5.96 0 0 0 9 3C5.691 3 3 5.691 3 9s2.691 6 6 6a5.98 5.98 0 0 0 5.334-3.25.75.75 0 0 1 1.333.688A7.48 7.48 0 0 1 9 16.5", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M15.82 2.349a.75.75 0 0 0-1.253-.455l-3.461 3.189a.75.75 0 0 0 .394 1.292l3.96.608a.74.74 0 0 0 .638-.205.75.75 0 0 0 .22-.633z" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Redo2.displayName = 'Redo2';
|
|
13
|
+
export default Redo2;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface Redo3Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Redo3: React.ForwardRefExoticComponent<Omit<Redo3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Redo3;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Redo3 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M8.98 16.5c-4.135 0-7.5-3.364-7.5-7.5s3.365-7.5 7.5-7.5a7.49 7.49 0 0 1 6.91 4.579.751.751 0 0 1-1.382.585A5.99 5.99 0 0 0 8.981 3c-3.309 0-6 2.691-6 6s2.691 6 6 6c1.99 0 3.846-.984 4.965-2.631a.75.75 0 1 1 1.24.843A7.5 7.5 0 0 1 8.98 16.5", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M15.462 7.5a1 1 0 0 1-.104-.007l-3.832-.536a.75.75 0 1 1 .207-1.485l3.09.431.427-3.09a.744.744 0 0 1 .846-.639.75.75 0 0 1 .64.846l-.531 3.833a.75.75 0 0 1-.743.647" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Redo3.displayName = 'Redo3';
|
|
13
|
+
export default Redo3;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface Refresh3AnticlockwiseSlashProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Refresh3AnticlockwiseSlash: React.ForwardRefExoticComponent<Omit<Refresh3AnticlockwiseSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Refresh3AnticlockwiseSlash;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Refresh3AnticlockwiseSlash = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M16.247 9.549a.75.75 0 0 1-.75-.73 6.5 6.5 0 0 0-.41-2.103.75.75 0 0 1 1.405-.527c.31.828.48 1.7.505 2.59a.75.75 0 0 1-.73.77zM2.29 7a.75.75 0 0 1-.739-.617l-.54-3a.75.75 0 0 1 1.477-.266l.178.99A7.97 7.97 0 0 1 9 1c2.136 0 4.145.833 5.656 2.344a.75.75 0 1 1-1.06 1.06A6.46 6.46 0 0 0 9 2.5a6.48 6.48 0 0 0-6.016 4.035A.75.75 0 0 1 2.29 7m1.584 7.876a.75.75 0 0 1-.53-.22 7.96 7.96 0 0 1-2.34-5.434.75.75 0 0 1 .728-.77c.397-.37.76.315.77.729a6.47 6.47 0 0 0 1.902 4.415.75.75 0 0 1-.53 1.28M9 17a8 8 0 0 1-2.811-.508.75.75 0 1 1 .527-1.405c.73.274 1.498.413 2.284.413a6.48 6.48 0 0 0 6.016-4.035.75.75 0 0 1 1.432.152l.54 3a.75.75 0 0 1-1.476.266l-.178-.99A7.97 7.97 0 0 1 9 17", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M2 16.75a.75.75 0 0 1-.53-1.28l14-14a.75.75 0 1 1 1.06 1.06l-14 14a.75.75 0 0 1-.53.22" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Refresh3AnticlockwiseSlash.displayName = 'Refresh3AnticlockwiseSlash';
|
|
13
|
+
export default Refresh3AnticlockwiseSlash;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface Refresh3ClockwiseSlashProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Refresh3ClockwiseSlash: React.ForwardRefExoticComponent<Omit<Refresh3ClockwiseSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Refresh3ClockwiseSlash;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Refresh3ClockwiseSlash = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M14.751 17a1 1 0 0 1-.134-.012l-3-.54a.75.75 0 0 1-.152-1.432A6.48 6.48 0 0 0 15.5 9c0-.786-.139-1.554-.413-2.284a.75.75 0 1 1 1.405-.527C16.829 7.088 17 8.034 17 9a7.97 7.97 0 0 1-3.106 6.334l.989.178A.75.75 0 0 1 14.75 17m-.624-12.376a.75.75 0 0 1-.53-.22A6.47 6.47 0 0 0 9.18 2.502a.75.75 0 0 1-.73-.77.734.734 0 0 1 .77-.729 7.97 7.97 0 0 1 5.435 2.34.75.75 0 0 1-.53 1.28ZM3.874 14.876a.75.75 0 0 1-.53-.22A7.95 7.95 0 0 1 1 9a7.97 7.97 0 0 1 3.106-6.334l-.989-.178a.75.75 0 0 1-.605-.87.757.757 0 0 1 .87-.606l3 .54a.75.75 0 0 1 .153 1.432A6.48 6.48 0 0 0 2.5 9c0 1.735.676 3.368 1.904 4.596a.75.75 0 0 1-.53 1.28M8.8 16.997h-.022a8 8 0 0 1-2.589-.505.75.75 0 0 1 .528-1.405c.671.253 1.379.39 2.102.41a.75.75 0 0 1-.02 1.5Z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M2 16.75a.75.75 0 0 1-.53-1.28l14-14a.75.75 0 1 1 1.06 1.06l-14 14a.75.75 0 0 1-.53.22" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Refresh3ClockwiseSlash.displayName = 'Refresh3ClockwiseSlash';
|
|
13
|
+
export default Refresh3ClockwiseSlash;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface RefreshAnticlockwiseProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const RefreshAnticlockwise: React.ForwardRefExoticComponent<Omit<RefreshAnticlockwiseProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default RefreshAnticlockwise;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const RefreshAnticlockwise = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M9 1a7.97 7.97 0 0 0-6.262 3.033l-.116-.83a.749.749 0 1 0-1.485.205l.408 2.945a.75.75 0 0 0 .846.64l2.943-.407a.75.75 0 0 0 .641-.846.756.756 0 0 0-.846-.64l-1.456.2A6.47 6.47 0 0 1 9 2.501c3.545 0 6.4 2.774 6.497 6.316a.75.75 0 0 0 .75.729h.02a.75.75 0 0 0 .73-.77A7.956 7.956 0 0 0 9 1" }), _jsx("path", { d: "m15.61 11.007-2.944.407a.75.75 0 0 0-.641.846c.57.41.435.69.846.64l1.456-.201A6.48 6.48 0 0 1 9 15.499a6.465 6.465 0 0 1-6.498-6.317c-.01-.414-.352-.761-.77-.729a.75.75 0 0 0-.729.77A7.956 7.956 0 0 0 9 17a7.98 7.98 0 0 0 6.262-3.036l.115.834a.75.75 0 1 0 1.486-.206l-.408-2.945a.753.753 0 0 0-.846-.64", "data-color": "color-2", opacity: ".4" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
RefreshAnticlockwise.displayName = 'RefreshAnticlockwise';
|
|
13
|
+
export default RefreshAnticlockwise;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface RefreshAnticlockwiseSlashProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const RefreshAnticlockwiseSlash: React.ForwardRefExoticComponent<Omit<RefreshAnticlockwiseSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default RefreshAnticlockwiseSlash;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const RefreshAnticlockwiseSlash = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M16.247 9.546a.75.75 0 0 1-.75-.73 6.5 6.5 0 0 0-.41-2.1.75.75 0 1 1 1.405-.527c.31.829.48 1.699.505 2.586a.75.75 0 0 1-.73.77zm-1.59-6.203A7.95 7.95 0 0 0 9 1a7.97 7.97 0 0 0-6.262 3.033l-.116-.83a.746.746 0 0 0-.845-.64.75.75 0 0 0-.64.845l.408 2.945a.75.75 0 0 0 .846.64l2.943-.407A.75.75 0 0 0 5.13 5.1l-1.456.201A6.47 6.47 0 0 1 9 2.501c1.736 0 3.369.675 4.596 1.903a.75.75 0 1 0 1.06-1.06ZM3.874 14.877a.75.75 0 0 1-.53-.22 7.96 7.96 0 0 1-2.34-5.434.75.75 0 0 1 .728-.77c.41-.38.76.315.77.73a6.47 6.47 0 0 0 1.902 4.413.75.75 0 0 1-.53 1.28m12.581-3.229a.755.755 0 0 0-.846-.64l-2.943.407a.75.75 0 0 0 .205 1.486l1.456-.201a6.476 6.476 0 0 1-7.61 2.389.751.751 0 0 0-.528 1.404A8 8 0 0 0 9 17a7.98 7.98 0 0 0 6.262-3.036l.116.834a.75.75 0 1 0 1.485-.206z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M2 16.75a.75.75 0 0 1-.53-1.28l14-14a.75.75 0 1 1 1.06 1.06l-14 14a.75.75 0 0 1-.53.22" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
RefreshAnticlockwiseSlash.displayName = 'RefreshAnticlockwiseSlash';
|
|
13
|
+
export default RefreshAnticlockwiseSlash;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface RefreshClockwiseSlashProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const RefreshClockwiseSlash: React.ForwardRefExoticComponent<Omit<RefreshClockwiseSlashProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default RefreshClockwiseSlash;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const RefreshClockwiseSlash = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M14.127 4.624a.75.75 0 0 1-.53-.22 6.47 6.47 0 0 0-4.414-1.902.75.75 0 1 1 .042-1.499c2.05.057 3.98.888 5.432 2.34a.75.75 0 0 1-.53 1.28m.671 10.754-.831-.115A7.97 7.97 0 0 0 17 9a8 8 0 0 0-.508-2.811.75.75 0 0 0-1.405.527c.274.729.413 1.497.413 2.284a6.47 6.47 0 0 1-2.801 5.327l.2-1.456a.75.75 0 0 0-1.485-.206l-.407 2.944a.75.75 0 0 0 .64.845l2.945.409q.53.007.104.007a.75.75 0 0 0 .102-1.493m-6 1.62h-.021a8 8 0 0 1-2.588-.505.75.75 0 0 1 .528-1.405c.67.253 1.377.39 2.1.41a.75.75 0 0 1-.02 1.5M6.353 1.545l-2.945-.408a.75.75 0 1 0-.206 1.485l.834.116A7.98 7.98 0 0 0 1 9c0 2.137.832 4.146 2.343 5.657a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06A6.46 6.46 0 0 1 2.5 9a6.48 6.48 0 0 1 2.801-5.327L5.1 5.129a.75.75 0 0 0 1.486.205l.407-2.943a.75.75 0 0 0-.64-.846", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M2 16.75a.75.75 0 0 1-.53-1.28l14-14a.75.75 0 1 1 1.06 1.06l-14 14a.75.75 0 0 1-.53.22" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
RefreshClockwiseSlash.displayName = 'RefreshClockwiseSlash';
|
|
13
|
+
export default RefreshClockwiseSlash;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface RefrigeratorProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Refrigerator: React.ForwardRefExoticComponent<Omit<RefrigeratorProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Refrigerator;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Refrigerator = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("rect", { width: "13", height: "16", x: "2.5", y: "1", "data-color": "color-2", opacity: ".4", rx: "2.75", ry: "2.75" }), _jsx("path", { d: "M5.75 5.5A.75.75 0 0 1 5 4.75v-.5a.75.75 0 0 1 1.5 0v.5a.75.75 0 0 1-.75.75m0 8a.75.75 0 0 1-.75-.75v-1a.75.75 0 0 1 1.5 0v1a.75.75 0 0 1-.75.75m-3.25-6h13V9h-13z" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Refrigerator.displayName = 'Refrigerator';
|
|
13
|
+
export default Refrigerator;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface RemoteControlProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const RemoteControl: React.ForwardRefExoticComponent<Omit<RemoteControlProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default RemoteControl;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const RemoteControl = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M11.75 8h-5.5a2.753 2.753 0 0 0-2.75 2.75v5.5c0 .414.336.75.75.75h9.5a.75.75 0 0 0 .75-.75v-5.5A2.753 2.753 0 0 0 11.75 8", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M12.182 6.848a.75.75 0 0 1-.53-.22c-1.417-1.416-3.887-1.416-5.303 0a.75.75 0 1 1-1.06-1.06C6.278 4.576 7.597 4.03 9 4.03s2.72.546 3.712 1.538a.75.75 0 0 1-.53 1.28" }), _jsx("path", { d: "M14.304 4.727a.75.75 0 0 1-.53-.22A6.7 6.7 0 0 0 9 2.53a6.7 6.7 0 0 0-4.774 1.977.75.75 0 1 1-1.06-1.06C4.725 1.888 6.797 1.03 9.001 1.03s4.275.858 5.833 2.417a.75.75 0 0 1-.53 1.28" }), _jsx("circle", { cx: "7.25", cy: "11.5", r: "1" }), _jsx("circle", { cx: "10.75", cy: "11.5", r: "1" }), _jsx("circle", { cx: "7.25", cy: "15", r: "1" }), _jsx("circle", { cx: "10.75", cy: "15", r: "1" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
RemoteControl.displayName = 'RemoteControl';
|
|
13
|
+
export default RemoteControl;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface RemoteControl2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const RemoteControl2: React.ForwardRefExoticComponent<Omit<RemoteControl2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default RemoteControl2;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const RemoteControl2 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("rect", { width: "10", height: "16", x: "4", y: "1", "data-color": "color-2", opacity: ".4", rx: "2.75", ry: "2.75" }), _jsx("circle", { cx: "9", cy: "5.5", r: "2" }), _jsx("circle", { cx: "7.5", cy: "10", r: "1" }), _jsx("circle", { cx: "10.5", cy: "10", r: "1" }), _jsx("circle", { cx: "7.5", cy: "13", r: "1" }), _jsx("circle", { cx: "10.5", cy: "13", r: "1" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
RemoteControl2.displayName = 'RemoteControl2';
|
|
13
|
+
export default RemoteControl2;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface ReportFileProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const ReportFile: React.ForwardRefExoticComponent<Omit<ReportFileProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ReportFile;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const ReportFile = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("rect", { width: "14", height: "16", x: "2", y: "1", "data-color": "color-2", opacity: ".4", rx: "2.75", ry: "2.75" }), _jsx("path", { d: "M12.25 14h-6.5a.75.75 0 0 1 0-1.5h6.5a.75.75 0 0 1 0 1.5m-.006-4.032-.613-1.51-1.618-3.99A.75.75 0 0 0 9.317 4h-.635a.75.75 0 0 0-.695.468l-1.619 3.99-.612 1.51a.75.75 0 0 0 1.39.564L7.565 9.5h2.87l.418 1.032a.75.75 0 0 0 1.391-.564M8.174 8 9 5.963 9.826 8z" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
ReportFile.displayName = 'ReportFile';
|
|
13
|
+
export default ReportFile;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface RepositionProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Reposition: React.ForwardRefExoticComponent<Omit<RepositionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Reposition;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Reposition = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("circle", { cx: "5", cy: "5", r: "3", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "5", cy: "13", r: "3", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M11.03 6.78 13 4.81l1.97 1.97a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06l-2.5-2.5a.75.75 0 0 0-1.06 0l-2.5 2.5a.75.75 0 1 0 1.06 1.06m3.94 4.44L13 13.19l-1.97-1.97a.75.75 0 1 0-1.06 1.06l2.5 2.5a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 1 0-1.06-1.06" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Reposition.displayName = 'Reposition';
|
|
13
|
+
export default Reposition;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface ReroutingProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Rerouting: React.ForwardRefExoticComponent<Omit<ReroutingProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Rerouting;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Rerouting = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M13.25 6.001H8.325A1.75 1.75 0 0 0 6.75 5C5.785 5 5 5.785 5 6.75S5.785 8.5 6.75 8.5c.695 0 1.292-.41 1.574-.999h4.926c.69 0 1.25.56 1.25 1.25v5c0 .69-.56 1.25-1.25 1.25h-7.5a.75.75 0 0 0 0 1.5h7.5a2.753 2.753 0 0 0 2.75-2.75v-5a2.753 2.753 0 0 0-2.75-2.75", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M11.25 13c.965 0 1.75-.785 1.75-1.75s-.785-1.75-1.75-1.75c-.695 0-1.292.41-1.574.999H4.75c-.69 0-1.25-.56-1.25-1.25v-5c0-.69.56-1.25 1.25-1.25h7.5a.75.75 0 0 0 0-1.5h-7.5A2.753 2.753 0 0 0 2 4.249v5a2.753 2.753 0 0 0 2.75 2.75h4.925c.282.59.88 1.001 1.575 1.001" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Rerouting.displayName = 'Rerouting';
|
|
13
|
+
export default Rerouting;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface Robot2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Robot2: React.ForwardRefExoticComponent<Omit<Robot2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Robot2;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Robot2 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M14.75 5.5a.7.7 0 0 0-.25.05v-.3a2.753 2.753 0 0 0-2.75-2.75h-2v-1a.75.75 0 0 0-1.5 0v1h-2A2.753 2.753 0 0 0 3.5 5.25v.3a.7.7 0 0 0-.25-.5.75.75 0 0 0-.75.75v1.5c0 .414.336.75.75.75a.7.7 0 0 0 .27-.054A2.745 2.745 0 0 0 6.25 11h5.5c1.45 0 2.628-1.13 2.73-2.554a.7.7 0 0 0 .27.054.75.75 0 0 0 .75-.75v-1.5a.75.75 0 0 0-.75-.75", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M7.75 7a1 1 0 1 0-2 0 1 1 0 0 0 2 0m4.5 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0" }), _jsx("path", { d: "M15.2 14.957C13.672 13.078 11.412 12 9 12s-4.672 1.078-6.2 2.957a1.24 1.24 0 0 0-.156 1.323c.212.444.647.72 1.137.72h10.438c.49 0 .925-.276 1.137-.72.209-.44.15-.947-.156-1.323", "data-color": "color-2" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Robot2.displayName = 'Robot2';
|
|
13
|
+
export default Robot2;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface Robot3Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Robot3: React.ForwardRefExoticComponent<Omit<Robot3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Robot3;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Robot3 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M9.75 1.5V.75a.75.75 0 0 0-1.5 0v.75C5.63 1.5 3.5 3.63 3.5 6.25v5A2.753 2.753 0 0 0 6.25 14h5.5a2.753 2.753 0 0 0 2.75-2.75v-5c0-2.62-2.13-4.75-4.75-4.75", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M4.834 17c-.324 0-.586-.311-.486-.62a2 2 0 0 1 3.804 0c.1.309-.162.62-.486.62zm5.5 0c-.324 0-.586-.311-.486-.62a2 2 0 0 1 3.804 0c.1.309-.162.62-.486.62zm-8.585-4a.75.75 0 0 1-.67-1.085l1.75-3.5a.75.75 0 1 1 1.342.67l-1.75 3.5a.75.75 0 0 1-.672.415m14.502 0a.75.75 0 0 1-.672-.415l-1.75-3.5a.75.75 0 1 1 1.342-.67l1.75 3.5A.75.75 0 0 1 16.25 13" }), _jsx("circle", { cx: "6.5", cy: "6", r: "1" }), _jsx("circle", { cx: "11.5", cy: "6", r: "1" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Robot3.displayName = 'Robot3';
|
|
13
|
+
export default Robot3;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface Robot4Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Robot4: React.ForwardRefExoticComponent<Omit<Robot4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Robot4;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Robot4 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M11.75 1.5h-2V.75a.75.75 0 0 0-1.5 0v.75h-2A2.753 2.753 0 0 0 3.5 4.25v1.5A2.753 2.753 0 0 0 6.25 8.5h5.5a2.753 2.753 0 0 0 2.75-2.75v-1.5a2.753 2.753 0 0 0-2.75-2.75", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "6.75", cy: "5", r: "1" }), _jsx("circle", { cx: "11.25", cy: "5", r: "1" }), _jsx("path", { d: "m16.507 12.447-3-2.75a.4.4 0 0 0-.13-.08A.74.74 0 0 0 13 9.5H5a.74.74 0 0 0-.372.114.4.4 0 0 0-.135.083l-3 2.75a.75.75 0 1 0 1.014 1.106l1.929-1.769.167 1.334C4.879 15.331 6.77 17 9 17s4.121-1.669 4.398-3.882l.166-1.334 1.93 1.769a.747.747 0 0 0 1.06-.46.75.75 0 0 0-.047-1.06" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Robot4.displayName = 'Robot4';
|
|
13
|
+
export default Robot4;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface RockOnProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const RockOn: React.ForwardRefExoticComponent<Omit<RockOnProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default RockOn;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const RockOn = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M16 4.499c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v2.89a1.49 1.49 0 0 0-2.25.284 1.49 1.49 0 0 0-2.25-.284V3.5C8.5 2.673 7.827 2 7 2s-1.5.673-1.5 1.5v6.991L4.179 8.808a1.5 1.5 0 0 0-2.107-.254c-.632.497-.74 1.335-.266 2.088l1.96 3.014a6.23 6.23 0 0 0 5.24 2.844h1.745a5.256 5.256 0 0 0 5.25-5.25z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M2 6.25c.265 0 .52-.14.655-.386l1.25-2.25A.748.748 0 0 0 3.25 2.5h-.709l.42-1.263A.75.75 0 0 0 1.596.636l-1.25 2.25A.748.748 0 0 0 1 4h.709l-.42 1.263A.75.75 0 0 0 2 6.25" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
RockOn.displayName = 'RockOn';
|
|
13
|
+
export default RockOn;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface RopeStanchionsProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const RopeStanchions: React.ForwardRefExoticComponent<Omit<RopeStanchionsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default RopeStanchions;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const RopeStanchions = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M4.75 14.5H4v-10a.75.75 0 0 0-1.5 0v10h-.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5m11.5 0h-.75v-10a.75.75 0 0 0-1.5 0v10h-.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "3.25", cy: "3.75", r: "1.75" }), _jsx("circle", { cx: "14.75", cy: "3.75", r: "1.75" }), _jsx("path", { d: "M9 8.25a6.7 6.7 0 0 1-3.095-.755.75.75 0 1 1 .69-1.332 5.25 5.25 0 0 0 4.81 0 .75.75 0 1 1 .69 1.332A6.7 6.7 0 0 1 9 8.25" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
RopeStanchions.displayName = 'RopeStanchions';
|
|
13
|
+
export default RopeStanchions;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface Rotation3602Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Rotation3602: React.ForwardRefExoticComponent<Omit<Rotation3602Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Rotation3602;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Rotation3602 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M9 17c-2.523 0-4.5-3.514-4.5-8q0-.288.012-.572c.014-.414.352-.758.777-.72a.75.75 0 0 1 .72.778Q6 8.74 6 9c0 3.83 1.582 6.5 3 6.5s3-2.67 3-6.5-1.58-6.5-3-6.5c-1.019 0-2.067 1.352-2.605 3.363a.75.75 0 1 1-1.45-.389C5.684 2.714 7.238 1 9 1c2.523 0 4.5 3.514 4.5 8s-1.977 8-4.5 8", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m13.068 12.454.006-.027zM9 4.5C4.514 4.5 1 6.477 1 9s3.514 4.5 8 4.5c.76 0 1.489-.075 2.2-.186a9 9 0 0 0 .512-1.625A12.4 12.4 0 0 1 9 12c-3.83 0-6.5-1.581-6.5-3S5.17 6 9 6s6.5 1.581 6.5 3c0 .606-.46 1.108-.846 1.423a.75.75 0 0 0 .95 1.162C16.517 10.839 17 9.945 17 9c0-2.523-3.514-4.5-8-4.5" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Rotation3602.displayName = 'Rotation3602';
|
|
13
|
+
export default Rotation3602;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface SavedItems2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const SavedItems2: React.ForwardRefExoticComponent<Omit<SavedItems2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default SavedItems2;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const SavedItems2 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("rect", { width: "14", height: "14", x: "2", y: "2", "data-color": "color-2", opacity: ".4", rx: "2.75", ry: "2.75" }), _jsx("path", { d: "M12.5 2H8v6.75a.5.5 0 0 0 .854.354l1.396-1.397 1.397 1.397a.5.5 0 0 0 .853-.354z" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
SavedItems2.displayName = 'SavedItems2';
|
|
13
|
+
export default SavedItems2;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface ScaleImg4kProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const ScaleImg4k: React.ForwardRefExoticComponent<Omit<ScaleImg4kProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ScaleImg4k;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const ScaleImg4k = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M12.25 4.75A.75.75 0 0 0 11.5 4H11V.75a.75.75 0 0 0-.75-.75h-.375a.75.75 0 0 0-.58.275L6.418 3.794a.75.75 0 0 0-.169.475v.481c0 .414.336.75.75.75h2.5V6A.75.75 0 0 0 11 6v-.5h.5a.75.75 0 0 0 .75-.75M9.5 4H8.188L9.5 2.394zm6.651-1.04 1.637-1.688A.75.75 0 0 0 16.712.228L14.5 2.508V.75a.75.75 0 0 0-1.5 0V6a.75.75 0 0 0 1.5 0V4.662l.581-.6 1.542 2.35a.75.75 0 1 0 1.254-.824z" }), _jsx("path", { d: "M1.75 6.5a.75.75 0 0 0 .75-.75c0-.69.56-1.25 1.25-1.25a.75.75 0 0 0 0-1.5A2.753 2.753 0 0 0 1 5.75c0 .414.336.75.75.75m12.5 7a.75.75 0 0 0-.75.75c0 .69-.56 1.25-1.25 1.25a.75.75 0 0 0 0 1.5A2.753 2.753 0 0 0 15 14.25a.75.75 0 0 0-.75-.75m0-5.5a.75.75 0 0 0-.75.75v2.5a.75.75 0 0 0 1.5 0v-2.5a.75.75 0 0 0-.75-.75", "data-color": "color-2", opacity: ".4" }), _jsx("rect", { width: "9.5", height: "9.5", x: "1", y: "7.5", "data-color": "color-2", opacity: ".4", rx: "2.25", ry: "2.25" }), _jsx("circle", { cx: "7.25", cy: "10.75", r: "1.25" }), _jsx("path", { d: "M2 11.5a5.5 5.5 0 0 0-1 .095v3.155C1 15.99 2.01 17 3.25 17H7.5A5.5 5.5 0 0 0 2 11.5" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
ScaleImg4k.displayName = 'ScaleImg4k';
|
|
13
|
+
export default ScaleImg4k;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface ScanImageProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const ScanImage: React.ForwardRefExoticComponent<Omit<ScanImageProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ScanImage;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const ScanImage = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
+
const dimensions = size
|
|
5
|
+
? { width: size, height: size }
|
|
6
|
+
: {
|
|
7
|
+
width: props.width || 18,
|
|
8
|
+
height: props.height || 18,
|
|
9
|
+
};
|
|
10
|
+
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("circle", { cx: "9", cy: "9", r: "3", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M2.75 7.5a.75.75 0 0 0 .75-.75v-2c0-.69.56-1.25 1.25-1.25h2a.75.75 0 0 0 0-1.5h-2A2.753 2.753 0 0 0 2 4.75v2c0 .414.336.75.75.75M13.25 2h-2a.75.75 0 0 0 0 1.5h2c.69 0 1.25.56 1.25 1.25v2a.75.75 0 0 0 1.5 0v-2A2.753 2.753 0 0 0 13.25 2m-6.5 12.5h-2c-.69 0-1.25-.56-1.25-1.25v-2a.75.75 0 0 0-1.5 0v2A2.753 2.753 0 0 0 4.75 16h2a.75.75 0 0 0 0-1.5", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "13.75", cy: "13.75", r: "1.75" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
ScanImage.displayName = 'ScanImage';
|
|
13
|
+
export default ScanImage;
|