@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 ChildProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Child: React.ForwardRefExoticComponent<Omit<ChildProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Child;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Child = 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 5c-1.103 0-2-.897-2-2s.897-2 2-2 2 .897 2 2-.897 2-2 2" }), _jsx("path", { d: "M12 7.166c1.177-.61 2.21-1.383 3.06-2.324a.75.75 0 0 0-1.114-1.005c-.8.888-1.75 1.583-2.89 2.132-.681.038-1.372.062-2.056.062s-1.374-.024-2.056-.062c-1.14-.549-2.09-1.244-2.89-2.132A.75.75 0 1 0 2.94 4.842c.85.941 1.883 1.715 3.06 2.323V10c0 .442.102.858.274 1.236l-1.043 1.377a1.74 1.74 0 0 0-.25 1.655l.814 2.238a.75.75 0 0 0 1.41-.512l-.814-2.239a.25.25 0 0 1 .035-.236l.827-1.09C7.746 12.783 8.347 13 9 13s1.254-.216 1.747-.572l.827 1.091a.25.25 0 0 1 .35.237l-.814 2.238a.75.75 0 0 0 1.41.512l.814-2.237a1.74 1.74 0 0 0-.25-1.656l-1.043-1.377A3 3 0 0 0 12 10z", "data-color": "color-2", opacity: ".4" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Child.displayName = 'Child';
|
|
13
|
+
export default Child;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CircleCoinInProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CircleCoinIn: React.ForwardRefExoticComponent<Omit<CircleCoinInProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CircleCoinIn;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CircleCoinIn = 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.581 15.47c-.191.017-.385.03-.581.03-3.584 0-6.5-2.916-6.5-6.5S5.416 2.5 9 2.5s6.5 2.916 6.5 6.5c0 .197-.13.39-.3.583a.75.75 0 0 0 .683.812.747.747 0 0 0 .812-.682C16.985 9.478 17 9.24 17 9c0-4.411-3.589-8-8-8S1 4.589 1 9s3.589 8 8 8c.241 0 .48-.15.714-.036a.75.75 0 0 0-.133-1.494", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M17.25 14h-3.19l1.22-1.22a.75.75 0 1 0-1.06-1.06l-2.5 2.5a.75.75 0 0 0 0 1.06l2.5 2.5a.747.747 0 0 0 1.06 0 .75.75 0 0 0 0-1.06l-1.22-1.22h3.19a.75.75 0 0 0 0-1.5M8.116 5.823 5.823 8.116a1.25 1.25 0 0 0 0 1.768l2.293 2.293a1.25 1.25 0 0 0 1.768 0l2.293-2.293a1.25 1.25 0 0 0 0-1.768L9.884 5.823a1.25 1.25 0 0 0-1.768 0" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CircleCoinIn.displayName = 'CircleCoinIn';
|
|
13
|
+
export default CircleCoinIn;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CircleCoinOutProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CircleCoinOut: React.ForwardRefExoticComponent<Omit<CircleCoinOutProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CircleCoinOut;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CircleCoinOut = 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.116 5.823 5.823 8.116a1.25 1.25 0 0 0 0 1.768l2.293 2.293a1.25 1.25 0 0 0 1.768 0l2.293-2.293a1.25 1.25 0 0 0 0-1.768L9.884 5.823a1.25 1.25 0 0 0-1.768 0m9.664 8.397-2.5-2.5a.75.75 0 1 0-1.06 1.06L15.44 14h-3.19a.75.75 0 0 0 0 1.5h3.19l-1.22 1.22a.75.75 0 1 0 1.06 1.06l2.5-2.5a.75.75 0 0 0 0-1.06" }), _jsx("path", { d: "M9.575 15.47c-.19.017-.38.03-.575.03-3.584 0-6.5-2.916-6.5-6.5S5.416 2.5 9 2.5s6.5 2.916 6.5 6.5c0 .197-.13.39-.3.583a.75.75 0 0 0 .683.812.747.747 0 0 0 .812-.682C16.985 9.478 17 9.24 17 9c0-4.411-3.589-8-8-8S1 4.589 1 9s3.589 8 8 8c.24 0 .476-.15.71-.036a.75.75 0 0 0-.135-1.494", "data-color": "color-2", opacity: ".4" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CircleCoinOut.displayName = 'CircleCoinOut';
|
|
13
|
+
export default CircleCoinOut;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CircleCoinPlusProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CircleCoinPlus: React.ForwardRefExoticComponent<Omit<CircleCoinPlusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CircleCoinPlus;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CircleCoinPlus = 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.447 15.481A6 6 0 0 1 9 15.5c-3.584 0-6.5-2.916-6.5-6.5S5.416 2.5 9 2.5s6.5 2.916 6.5 6.5q-.1.226-.19.447a.75.75 0 0 0 1.497.11A8 8 0 0 0 17 9c0-4.411-3.589-8-8-8S1 4.589 1 9s3.589 8 8 8q.281-.1.558-.022a.75.75 0 0 0-.11-1.497", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M8.116 5.823 5.823 8.116a1.25 1.25 0 0 0 0 1.768l2.293 2.293a1.247 1.247 0 0 0 1.768 0l2.293-2.293a1.25 1.25 0 0 0 0-1.768L9.884 5.823a1.25 1.25 0 0 0-1.768 0M16.75 13.5H15v-1.75a.75.75 0 0 0-1.5 0v1.75h-1.75a.75.75 0 0 0 0 1.5h1.75v1.75a.75.75 0 0 0 1.5 0V15h1.75a.75.75 0 0 0 0-1.5" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CircleCoinPlus.displayName = 'CircleCoinPlus';
|
|
13
|
+
export default CircleCoinPlus;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CircleConversionProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CircleConversion: React.ForwardRefExoticComponent<Omit<CircleConversionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CircleConversion;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CircleConversion = 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: "8", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M16.93 10H6.25a.75.75 0 0 0-.53 1.28l2.5 2.5a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06L8.06 11.5h8.534a8 8 0 0 0 .337-1.5ZM9.78 4.22a.75.75 0 1 0-1.06 1.06L9.94 6.5H1.406A8 8 0 0 0 1.069 8h10.68a.75.75 0 0 0 .531-1.28z" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CircleConversion.displayName = 'CircleConversion';
|
|
13
|
+
export default CircleConversion;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CircleCrossProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CircleCross: React.ForwardRefExoticComponent<Omit<CircleCrossProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CircleCross;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CircleCross = 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: "8", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M15.445 8.195a6.506 6.506 0 0 1-5.64-5.64C9.541 2.523 9.273 2.5 9 2.5s-.54.023-.805.055a6.506 6.506 0 0 1-5.64 5.64c-.33.264-.55.532-.55.805s.22.54.55.805a6.506 6.506 0 0 1 5.64 5.64c.264.032.532.055.805.055s.54-.23.805-.055a6.506 6.506 0 0 1 5.64-5.64c.033-.264.055-.532.055-.805s-.022-.54-.055-.805" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CircleCross.displayName = 'CircleCross';
|
|
13
|
+
export default CircleCross;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CircleHalfArrowDownProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CircleHalfArrowDown: React.ForwardRefExoticComponent<Omit<CircleHalfArrowDownProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CircleHalfArrowDown;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CircleHalfArrowDown = 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.47 12.78a.747.747 0 0 0 1.06 0l3.25-3.25a.75.75 0 1 0-1.06-1.06l-1.97 1.97V1.75a.75.75 0 0 0-1.5 0v8.69L6.28 8.47a.75.75 0 1 0-1.06 1.06z" }), _jsx("path", { d: "M16.25 8.25a.75.75 0 0 0-.75.75c0 3.584-2.916 6.5-6.5 6.5S2.5 12.584 2.5 9A.75.75 0 0 0 1 9c0 4.411 3.589 8 8 8s8-3.589 8-8a.75.75 0 0 0-.75-.75", "data-color": "color-2", opacity: ".4" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CircleHalfArrowDown.displayName = 'CircleHalfArrowDown';
|
|
13
|
+
export default CircleHalfArrowDown;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CircleHalfArrowLeftProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CircleHalfArrowLeft: React.ForwardRefExoticComponent<Omit<CircleHalfArrowLeftProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CircleHalfArrowLeft;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CircleHalfArrowLeft = 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.25 8.25H7.56l1.97-1.97a.75.75 0 1 0-1.06-1.06L5.22 8.47a.75.75 0 0 0 0 1.06l3.25 3.25a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06L7.56 9.75h8.69a.75.75 0 0 0 0-1.5" }), _jsx("path", { d: "M9 15.5c-3.584 0-6.5-2.916-6.5-6.5S5.416 2.5 9 2.5A.75.75 0 0 0 9 1C4.589 1 1 4.589 1 9s3.589 8 8 8a.75.75 0 0 0 0-1.5", "data-color": "color-2", opacity: ".4" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CircleHalfArrowLeft.displayName = 'CircleHalfArrowLeft';
|
|
13
|
+
export default CircleHalfArrowLeft;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CircleHalfArrowRightProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CircleHalfArrowRight: React.ForwardRefExoticComponent<Omit<CircleHalfArrowRightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CircleHalfArrowRight;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CircleHalfArrowRight = 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.47 11.72a.75.75 0 1 0 1.06 1.06l3.25-3.25a.75.75 0 0 0 0-1.06L9.53 5.22a.75.75 0 1 0-1.06 1.06l1.97 1.97H1.75a.75.75 0 0 0 0 1.5h8.69z" }), _jsx("path", { d: "M9 1a.75.75 0 0 0 0 1.5c3.584 0 6.5 2.916 6.5 6.5s-2.916 6.5-6.5 6.5A.75.75 0 0 0 9 17c4.411 0 8-3.589 8-8s-3.589-8-8-8", "data-color": "color-2", opacity: ".4" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CircleHalfArrowRight.displayName = 'CircleHalfArrowRight';
|
|
13
|
+
export default CircleHalfArrowRight;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CircleHalfArrowUpProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CircleHalfArrowUp: React.ForwardRefExoticComponent<Omit<CircleHalfArrowUpProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CircleHalfArrowUp;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CircleHalfArrowUp = 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.53 5.22a.75.75 0 0 0-1.06 0L5.22 8.47a.75.75 0 1 0 1.06 1.06l1.97-1.97v8.69a.75.75 0 0 0 1.5 0V7.56l1.97 1.97a.747.747 0 0 0 1.06 0 .75.75 0 0 0 0-1.06z" }), _jsx("path", { d: "M9 1C4.589 1 1 4.589 1 9a.75.75 0 0 0 1.5 0c0-3.584 2.916-6.5 6.5-6.5s6.5 2.916 6.5 6.5A.75.75 0 0 0 17 9c0-4.411-3.589-8-8-8", "data-color": "color-2", opacity: ".4" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CircleHalfArrowUp.displayName = 'CircleHalfArrowUp';
|
|
13
|
+
export default CircleHalfArrowUp;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CircleHalfDottedChart2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CircleHalfDottedChart2: React.ForwardRefExoticComponent<Omit<CircleHalfDottedChart2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CircleHalfDottedChart2;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CircleHalfDottedChart2 = 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 1a.75.75 0 0 0 0 1.5c3.584 0 6.5 2.916 6.5 6.5s-2.916 6.5-6.5 6.5A.75.75 0 0 0 9 17c4.411 0 8-3.589 8-8s-3.589-8-8-8" }), _jsx("circle", { cx: "3.87", cy: "14.13", r: ".75", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "1.75", cy: "9", r: ".75", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "3.87", cy: "3.87", r: ".75", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "6.23", cy: "15.7", r: ".75", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "2.3", cy: "11.77", r: ".75", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "2.3", cy: "6.23", r: ".75", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "6.23", cy: "2.3", r: ".75", "data-color": "color-2", opacity: ".4" }), _jsx("rect", { width: "3.25", height: "8", x: "9.75", y: "5", rx: ".75", ry: ".75" }), _jsx("rect", { width: "3.25", height: "5", x: "5", y: "8", rx: ".75", ry: ".75" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CircleHalfDottedChart2.displayName = 'CircleHalfDottedChart2';
|
|
13
|
+
export default CircleHalfDottedChart2;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface ClockTimeProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const ClockTime: React.ForwardRefExoticComponent<Omit<ClockTimeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ClockTime;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const ClockTime = 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: "15.5", cy: "13", r: "1" }), _jsx("path", { d: "M9 1C4.589 1 1 4.589 1 9s3.589 8 8 8a7.96 7.96 0 0 0 5.16-1.897A2.5 2.5 0 0 1 13 13c0-1.378 1.122-2.5 2.5-2.5.467 0 .899.137 1.273.36A8 8 0 0 0 17 9c0-4.411-3.589-8-8-8", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M11.86 10.98a.75.75 0 0 1-1.043.19L8.573 9.617A.75.75 0 0 1 8.25 9V4.75a.75.75 0 0 1 1.5 0v3.857l1.92 1.33a.75.75 0 0 1 .19 1.043" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
ClockTime.displayName = 'ClockTime';
|
|
13
|
+
export default ClockTime;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CloneDashed3Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CloneDashed3: React.ForwardRefExoticComponent<Omit<CloneDashed3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CloneDashed3;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CloneDashed3 = 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: "M1.948 6.952a.75.75 0 0 1-.741-.643L1.029 5.07a2.73 2.73 0 0 1 .519-2.04 2.73 2.73 0 0 1 1.81-1.074l1.236-.179a.75.75 0 1 1 .215 1.484l-1.237.18a1.24 1.24 0 0 0-.823.488c-.2.267-.284.596-.236.927l.178 1.238a.75.75 0 0 1-.743.857Z" }), _jsx("path", { d: "M13.75 4.5h-6.5A2.75 2.75 0 0 0 4.5 7.25v6.5a2.75 2.75 0 0 0 2.75 2.75h6.5a2.75 2.75 0 0 0 2.75-2.75v-6.5a2.75 2.75 0 0 0-2.75-2.75", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M4.5 13.75v-1.419a1.24 1.24 0 0 1-1.059-1.04l-.178-1.238a.75.75 0 1 0-1.484.215l.178 1.237A2.73 2.73 0 0 0 4.51 13.85c-.001-.034-.01-.066-.01-.1M8.768 2.691l1.237-.178c.332-.49.66.36.928.236.267.2.44.492.488.823l.134.928h1.515l-.165-1.143a2.73 2.73 0 0 0-1.074-1.81 2.73 2.73 0 0 0-2.04-.518l-1.237.178a.75.75 0 1 0 .214 1.484" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CloneDashed3.displayName = 'CloneDashed3';
|
|
13
|
+
export default CloneDashed3;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CloneImageDashedProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CloneImageDashed: React.ForwardRefExoticComponent<Omit<CloneImageDashedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CloneImageDashed;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CloneImageDashed = 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: "12", height: "12", x: "4.5", y: "4.5", "data-color": "color-2", opacity: ".4", rx: "2.75", ry: "2.75" }), _jsx("path", { d: "M13.652 10.013a1.74 1.74 0 0 0-1.236-.514h-.001a1.74 1.74 0 0 0-1.238.513l-5.77 5.765a2.73 2.73 0 0 0 1.843.723h6.5a2.753 2.753 0 0 0 2.75-2.75v-.889zM8.25 9.5C7.561 9.5 7 8.939 7 8.25S7.561 7 8.25 7s1.25.561 1.25 1.25S8.939 9.5 8.25 9.5M1.948 6.952a.75.75 0 0 1-.741-.643L1.029 5.07a2.73 2.73 0 0 1 .519-2.04 2.73 2.73 0 0 1 1.81-1.074l1.236-.179a.75.75 0 1 1 .215 1.484l-1.237.18a1.24 1.24 0 0 0-.823.488c-.2.267-.284.596-.236.927l.178 1.238a.75.75 0 0 1-.743.857ZM4.5 13.75v-1.419a1.24 1.24 0 0 1-1.059-1.04l-.178-1.238a.75.75 0 1 0-1.484.215l.178 1.237A2.73 2.73 0 0 0 4.51 13.85c-.001-.034-.01-.066-.01-.1M8.768 2.691l1.237-.178c.332-.49.66.36.928.236.267.2.44.492.488.823l.134.928h1.515l-.165-1.143a2.73 2.73 0 0 0-1.074-1.81 2.73 2.73 0 0 0-2.04-.518l-1.237.178a.75.75 0 1 0 .214 1.484" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CloneImageDashed.displayName = 'CloneImageDashed';
|
|
13
|
+
export default CloneImageDashed;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CloneVideoDashedProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CloneVideoDashed: React.ForwardRefExoticComponent<Omit<CloneVideoDashedProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CloneVideoDashed;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CloneVideoDashed = 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: "M1.948 6.952a.75.75 0 0 1-.741-.643L1.029 5.07a2.73 2.73 0 0 1 .519-2.04 2.73 2.73 0 0 1 1.81-1.074l1.236-.179a.75.75 0 1 1 .215 1.484l-1.237.18a1.24 1.24 0 0 0-.823.488c-.2.267-.284.596-.236.927l.178 1.238a.75.75 0 0 1-.743.857Z" }), _jsx("path", { d: "M13.75 4.5h-6.5A2.75 2.75 0 0 0 4.5 7.25v6.5a2.75 2.75 0 0 0 2.75 2.75h6.5a2.75 2.75 0 0 0 2.75-2.75v-6.5a2.75 2.75 0 0 0-2.75-2.75", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M4.5 13.75v-1.419a1.24 1.24 0 0 1-1.059-1.04l-.178-1.238a.75.75 0 1 0-1.484.215l.178 1.237A2.73 2.73 0 0 0 4.51 13.85c-.001-.034-.01-.066-.01-.1M8.768 2.691l1.237-.178c.332-.49.66.36.928.236.267.2.44.492.488.823l.134.928h1.515l-.165-1.143a2.73 2.73 0 0 0-1.074-1.81 2.73 2.73 0 0 0-2.04-.518l-1.237.178a.75.75 0 1 0 .214 1.484m3.889 7.188L9.67 7.857a.75.75 0 0 0-1.17.621v4.044a.75.75 0 0 0 1.17.621l2.987-2.022a.75.75 0 0 0 0-1.242" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CloneVideoDashed.displayName = 'CloneVideoDashed';
|
|
13
|
+
export default CloneVideoDashed;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CloudeCodeProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CloudeCode: React.ForwardRefExoticComponent<Omit<CloudeCodeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CloudeCode;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CloudeCode = 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: "M10.5 17a.75.75 0 0 1-.53-1.28L11.69 14l-1.72-1.72a.75.75 0 1 1 1.06-1.06l2.25 2.25a.75.75 0 0 1 0 1.06l-2.25 2.25a.75.75 0 0 1-.53.22" }), _jsx("path", { d: "M14.157 5.826c-1.524-.602-3.449-.326-5.032 1.07.25-1.271 2.287-2.89 4.398-2.788C12.61 2.547 10.922 1.5 9.029 1.5c-2.885 0-5.231 2.355-5.231 5.25q0 .187.016.377a3.747 3.747 0 0 0-1.664 6.331c.257.248.55.439.856.6 0-.02-.006-.038-.006-.058 0-.601.234-1.166.66-1.59l2.25-2.25A2.234 2.234 0 0 1 9 10.084a2.234 2.234 0 0 1 3.09.075l2.25 2.25c.367.365.58.838.636 1.345A4.5 4.5 0 0 0 17 10a4.48 4.48 0 0 0-2.843-4.173Z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M7.5 17a.75.75 0 0 1-.53-.22l-2.25-2.25a.75.75 0 0 1 0-1.06l2.25-2.25a.75.75 0 1 1 1.06 1.06L6.31 14l1.72 1.72A.75.75 0 0 1 7.5 17" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CloudeCode.displayName = 'CloudeCode';
|
|
13
|
+
export default CloudeCode;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CoinStackProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CoinStack: React.ForwardRefExoticComponent<Omit<CoinStackProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CoinStack;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CoinStack = 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: "M10 7.25a.75.75 0 0 0-.75-.75h-5.5a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 .75-.75m-1.951 3.5a.75.75 0 0 0-.75-.75H2.75a.75.75 0 0 0 0 1.5h4.549a.75.75 0 0 0 .75-.75m-.098 2.75H3.75a.75.75 0 0 0 0 1.5h4.201a.75.75 0 0 0 0-1.5m-5.201-9h5.5a.75.75 0 0 0 0-1.5h-5.5a.75.75 0 0 0 0 1.5", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "13", cy: "11.5", r: "3.5" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CoinStack.displayName = 'CoinStack';
|
|
13
|
+
export default CoinStack;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface ConditionalLogicProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const ConditionalLogic: React.ForwardRefExoticComponent<Omit<ConditionalLogicProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ConditionalLogic;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const ConditionalLogic = 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 16a.75.75 0 0 1-.75-.75V6.5a.75.75 0 0 1 1.5 0v8.75a.75.75 0 0 1-.75.75m8.5-3.75a.75.75 0 0 1-.75-.75V6.25a.75.75 0 0 0-.75-.75h-2a.75.75 0 0 1 0-1.5h2C12.99 4 14 5.01 14 6.25v5.25a.75.75 0 0 1-.75.75", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "4.75", cy: "4.5", r: "2.5" }), _jsx("circle", { cx: "13.25", cy: "13.5", r: "2.5" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
ConditionalLogic.displayName = 'ConditionalLogic';
|
|
13
|
+
export default ConditionalLogic;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface ConnectPlusProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const ConnectPlus: React.ForwardRefExoticComponent<Omit<ConnectPlusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ConnectPlus;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const ConnectPlus = 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: "M15.5 12.25h-1.75V10.5a.75.75 0 0 0-1.5 0v1.75H10.5a.75.75 0 0 0 0 1.5h1.75v1.75a.75.75 0 0 0 1.5 0v-1.75h1.75a.75.75 0 0 0 0-1.5" }), _jsx("path", { fillRule: "evenodd", d: "M2 5a3 3 0 1 1 6 0 3 3 0 0 1-6 0", "data-color": "color-2", opacity: ".4" }), _jsx("path", { fillRule: "evenodd", d: "M10 5a3 3 0 1 1 1.476 2.585l-3.891 3.89a3 3 0 1 1-1.06-1.06l3.89-3.89A3 3 0 0 1 10 5" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
ConnectPlus.displayName = 'ConnectPlus';
|
|
13
|
+
export default ConnectPlus;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface Connection3Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Connection3: React.ForwardRefExoticComponent<Omit<Connection3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Connection3;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Connection3 = 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: "M10.5 10.5H4c-.827 0-1.5-.673-1.5-1.5S3.173 7.5 4 7.5h2V6H4C2.346 6 1 7.346 1 9s1.346 3 3 3h6.5z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M10.5 7.5V14c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5v-2H6v2c0 1.654 1.346 3 3 3s3-1.346 3-3V7.5z" }), _jsx("path", { d: "M14 6H7.5v1.5H14c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5h-2V12h2c1.654 0 3-1.346 3-3s-1.346-3-3-3", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M9 1C7.346 1 6 2.346 6 4v6.5h1.5V4c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5v2H12V4c0-1.654-1.346-3-3-3" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Connection3.displayName = 'Connection3';
|
|
13
|
+
export default Connection3;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CopyDeleteProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CopyDelete: React.ForwardRefExoticComponent<Omit<CopyDeleteProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CopyDelete;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CopyDelete = 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: "m2.537 4 .393 7.862A2.25 2.25 0 0 0 5.177 14H7V7.75C7 6.51 8.01 5.5 9.25 5.5h2.638l.075-1.5z" }), _jsx("path", { d: "M14.75 17h-5.5C8.01 17 7 15.99 7 14.75v-7C7 6.51 8.01 5.5 9.25 5.5h5.5C15.99 5.5 17 6.51 17 7.75v7c0 1.24-1.01 2.25-2.25 2.25", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M13.75 10.5h-3.5a.75.75 0 0 1 0-1.5h3.5a.75.75 0 0 1 0 1.5m0 3h-3.5a.75.75 0 0 1 0-1.5h3.5a.75.75 0 0 1 0 1.5" }), _jsx("path", { d: "M12.75 2.5H9.5v-.75A.75.75 0 0 0 8.75 1h-3a.75.75 0 0 0-.75.75v.75H1.75a.75.75 0 0 0 0 1.5h11a.75.75 0 0 0 0-1.5", "data-color": "color-2", opacity: ".4" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CopyDelete.displayName = 'CopyDelete';
|
|
13
|
+
export default CopyDelete;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CopyIdProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CopyId: React.ForwardRefExoticComponent<Omit<CopyIdProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CopyId;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CopyId = 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: "12", height: "12", x: "4.5", y: "4.5", "data-color": "color-2", opacity: ".4", rx: "2.75", ry: "2.75" }), _jsx("path", { d: "M4.5 7.25A2.753 2.753 0 0 1 7.25 4.5h6.25v-.25a2.753 2.753 0 0 0-2.75-2.75h-6.5A2.753 2.753 0 0 0 1.5 4.25v6.5a2.753 2.753 0 0 0 2.75 2.75h.25zm7.306 6.25H10.75a.75.75 0 0 1-.75-.75l.003-4a.75.75 0 0 1 .75-.75h1.054c.585 0 1.137.229 1.55.643.415.415.643.966.643 1.552l-.001 1.113a2.196 2.196 0 0 1-2.193 2.192M11.5 12h.305a.694.694 0 0 0 .693-.693l.001-1.113a.7.7 0 0 0-.203-.49.7.7 0 0 0-.49-.204h-.304z" }), _jsx("path", { d: "M8.25 13.5a.75.75 0 0 1-.75-.75v-4a.75.75 0 0 1 1.5 0v4a.75.75 0 0 1-.75.75" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CopyId.displayName = 'CopyId';
|
|
13
|
+
export default CopyId;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface DeafProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Deaf: React.ForwardRefExoticComponent<Omit<DeafProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Deaf;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Deaf = 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: "M7.313 16.998c-.494 0-.977-.104-1.433-.313a.751.751 0 0 1 .627-1.364c.61.281 1.274.233 1.973-.14.64-.341.741-.817.892-1.775.124-.787.28-1.767.973-2.723.318-.44.646-.794.963-1.136.837-.904 1.442-1.557 1.442-3.307 0-2.062-1.682-3.74-3.75-3.74S5.25 4.178 5.25 6.24a.75.75 0 0 1-1.5 0C3.75 3.35 6.105 1 9 1s5.25 2.35 5.25 5.24c0 2.339-.937 3.35-1.842 4.326-.286.31-.583.63-.848.996-.483.667-.591 1.352-.706 2.078-.16 1.01-.34 2.156-1.668 2.864a4 4 0 0 1-1.873.494", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M10.5 8.25a.75.75 0 0 1-.75-.75V6.24c0-.408-.336-.74-.75-.74s-.75.332-.75.74a.75.75 0 0 1-1.5 0C6.75 5.005 7.76 4 9 4s2.25 1.005 2.25 2.24V7.5a.75.75 0 0 1-.75.75", "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
|
+
Deaf.displayName = 'Deaf';
|
|
13
|
+
export default Deaf;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface DependencyLinkProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const DependencyLink: React.ForwardRefExoticComponent<Omit<DependencyLinkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default DependencyLink;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const DependencyLink = 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: "M6.25 13.5a.75.75 0 0 1-.75-.75V10.5c0-1.24 1.01-2.25 2.25-2.25h2.5A.75.75 0 0 0 11 7.5V5.25a.75.75 0 0 1 1.5 0V7.5c0 1.24-1.01 2.25-2.25 2.25h-2.5a.75.75 0 0 0-.75.75v2.25a.75.75 0 0 1-.75.75", "data-color": "color-2", opacity: ".4" }), _jsx("rect", { width: "9.5", height: "4.5", x: "7", y: "1.5", rx: "1.75", ry: "1.75" }), _jsx("rect", { width: "9.5", height: "4.5", x: "1.5", y: "12", rx: "1.75", ry: "1.75" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
DependencyLink.displayName = 'DependencyLink';
|
|
13
|
+
export default DependencyLink;
|