@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,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const TaskDebug = 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 13.5h-2.5a.75.75 0 0 1 0-1.5h2.5a.75.75 0 0 1 0 1.5m-6.5 0a.75.75 0 0 1-.53-1.28l1.97-1.97-1.97-1.97a.75.75 0 1 1 1.06-1.06l2.5 2.5a.75.75 0 0 1 0 1.06l-2.5 2.5a.75.75 0 0 1-.53.22", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M13.25 16.5h-8.5A2.753 2.753 0 0 1 2 13.75v-8.5A2.753 2.753 0 0 1 4.75 2.5h1.677a.75.75 0 0 1 0 1.5H4.75c-.69 0-1.25.56-1.25 1.25v8.5c0 .69.56 1.25 1.25 1.25h8.5c.69 0 1.25-.56 1.25-1.25v-3.686a.75.75 0 0 1 1.5 0v3.686a2.753 2.753 0 0 1-2.75 2.75", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M16.75 5a.75.75 0 0 0 0-1.5h-1.202a4 4 0 0 0-.119-.472 2.92 2.92 0 0 0 1.498-1.456.75.75 0 1 0-1.354-.644 1.46 1.46 0 0 1-.93.809C14.193 1.283 13.625 1 13 1s-1.192.283-1.643.737a1.46 1.46 0 0 1-.93-.81.75.75 0 0 0-1.354.645 2.92 2.92 0 0 0 1.498 1.456 4 4 0 0 0-.118.472H9.25a.75.75 0 0 0 0 1.5h1.203q.44.244.118.472a2.92 2.92 0 0 0-1.498 1.456.75.75 0 1 0 1.354.645c.197-.415.495-.67.93-.81.451.454 1.018.737 1.643.737s1.192-.283 1.643-.736c.435.139.733.395.93.809a.75.75 0 1 0 1.354-.645 2.92 2.92 0 0 0-1.498-1.456c.05-.151.087-.31.119-.472z" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
TaskDebug.displayName = 'TaskDebug';
|
|
13
|
+
export default TaskDebug;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface TaskSearchProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const TaskSearch: React.ForwardRefExoticComponent<Omit<TaskSearchProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default TaskSearch;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const TaskSearch = 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.66 8.84-.5-.498c-.38.104-.77.158-1.16.158A4.505 4.505 0 0 1 8.5 4c0-.722.187-1.395.49-2H4.75A2.753 2.753 0 0 0 2 4.75v8.5A2.753 2.753 0 0 0 4.75 16h8.5A2.753 2.753 0 0 0 16 13.25V9.476a2.22 2.22 0 0 1-1.34-.635", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m16.78 6.72-1.205-1.206C15.839 5.068 16 4.554 16 4c0-1.654-1.346-3-3-3s-3 1.346-3 3 1.346 3 3 3c.555 0 1.068-.162 1.514-.425L15.72 7.78a.747.747 0 0 0 1.06 0 .75.75 0 0 0 0-1.06M11.5 4c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5c0 .413-.168.787-.438 1.058l-.2.002-.2.002c-.271.27-.645.438-1.058.438-.827 0-1.5-.673-1.5-1.5m-5.22 8.78a.747.747 0 0 1-1.06 0 .75.75 0 0 1 0-1.06l1.97-1.97-1.97-1.97a.75.75 0 1 1 1.06-1.06l2.5 2.5a.75.75 0 0 1 0 1.06zm5.97.22h-2.5a.75.75 0 0 1 0-1.5h2.5a.75.75 0 0 1 0 1.5" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
TaskSearch.displayName = 'TaskSearch';
|
|
13
|
+
export default TaskSearch;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface TeepeeProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Teepee: React.ForwardRefExoticComponent<Omit<TeepeeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Teepee;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Teepee = 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.38 15.344 9.893 5.25l1.989-3.094a.75.75 0 0 0-1.262-.812L9 3.864l-1.619-2.52a.75.75 0 0 0-1.262.812L8.11 5.25 1.62 15.344a.75.75 0 0 0 .63 1.156h13.5a.75.75 0 0 0 .63-1.156", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M9.84 12.106c-.363-.564-1.318-.565-1.68.001L5.338 16.5h7.322z" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Teepee.displayName = 'Teepee';
|
|
13
|
+
export default Teepee;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface TextAdjustProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const TextAdjust: React.ForwardRefExoticComponent<Omit<TextAdjustProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default TextAdjust;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const TextAdjust = 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: "M5.16 11.45a.75.75 0 0 0 .97-.429L6.912 9h4.174l.784 2.021a.75.75 0 1 0 1.398-.542l-3.297-8.5a.75.75 0 0 0-.699-.479h-.546a.75.75 0 0 0-.7.479l-3.296 8.5a.75.75 0 0 0 .428.97M9 3.62l1.505 3.88h-3.01z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M15.25 13.5h-3.5a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5m-6.5-1.75a.75.75 0 0 0-.75.75v1H2.75a.75.75 0 0 0 0 1.5H8v1a.75.75 0 0 0 1.5 0v-3.5a.75.75 0 0 0-.75-.75" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
TextAdjust.displayName = 'TextAdjust';
|
|
13
|
+
export default TextAdjust;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface TheatreMaskProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const TheatreMask: React.ForwardRefExoticComponent<Omit<TheatreMaskProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default TheatreMask;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const TheatreMask = 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.019 1.267a.74.74 0 0 0-.551-.208c-2.003.088-3.842.418-5.464.983a.75.75 0 0 0-.504.708V8.5a6.964 6.964 0 0 0 5.88 6.903q.6.01.12.01a.75.75 0 0 0 .75-.75V1.809a.75.75 0 0 0-.231-.542", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M4.5 7.5a.501.501 0 0 1-.38-.825c.441-.515.91-.775 1.394-.775h.018c.483.006.939.27 1.357.785a.502.502 0 0 1-.588.774c-.498-.217-1.017-.213-1.63.01A.5.5 0 0 1 4.5 7.5m3.75 2.534a6.6 6.6 0 0 1-2.55-.543.5.5 0 0 0-.599.156.5.5 0 0 0 .1.617c1.004 1.238 2.06 1.896 3.139 1.972zm7.746-6.492c-1.622-.565-3.46-.895-5.464-.983a.75.75 0 0 0-.782.75v6.89c1.08.076 2.135.734 3.139 1.972.144.18.148.434.1.618a.5.5 0 0 1-.598.156A6.6 6.6 0 0 0 9.75 12.4v3.762a.75.75 0 0 0 .87.74A6.964 6.964 0 0 0 16.5 10V4.25a.75.75 0 0 0-.504-.708M13.89 8.215c-.418.514-.874.778-1.357.785h-.018c-.484 0-.952-.26-1.394-.774a.502.502 0 0 1 .55-.796c.616.224 1.133.227 1.63.011a.5.5 0 0 1 .589.774" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
TheatreMask.displayName = 'TheatreMask';
|
|
13
|
+
export default TheatreMask;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface TheatreMask2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const TheatreMask2: React.ForwardRefExoticComponent<Omit<TheatreMask2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default TheatreMask2;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const TheatreMask2 = 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.712 7.286-.52-4.973a1.74 1.74 0 0 0-.733-1.244 1.78 1.78 0 0 0-1.448-.265 29.3 29.3 0 0 1-8.43.88 1.74 1.74 0 0 0-1.363.56 1.74 1.74 0 0 0-.458 1.37l.52 4.973a6.26 6.26 0 0 0 6.867 5.566 6.2 6.2 0 0 0 4.204-2.28 6.2 6.2 0 0 0 1.36-4.587", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M16.788 5.345a1.8 1.8 0 0 0-1.358-.567c-.671.02-1.329.015-1.98-.006l.262 2.514a6.2 6.2 0 0 1-1.361 4.587 6.2 6.2 0 0 1-4.859 2.314c-.973 0-1.892-.25-2.725-.657a6.21 6.21 0 0 0 5.024 3.682q.35.039.7.039a6.2 6.2 0 0 0 3.893-1.373 6.2 6.2 0 0 0 2.306-4.192l.55-4.97a1.74 1.74 0 0 0-.452-1.371" }), _jsx("path", { d: "M9.866 8.222c-1.629.795-3.136.956-4.602.492a.5.5 0 0 0-.504.83c.926.927 1.848 1.395 2.746 1.395q.116 0 .232-.01c.99-.09 1.918-.755 2.76-1.974a.5.5 0 0 0-.632-.733M5.895 6.554a.5.5 0 0 0 .504-.83q-.706-.707-1.431-.64c-.489.044-.934.353-1.324.918a.5.5 0 0 0 .631.733c.586-.286 1.1-.344 1.62-.18Zm4.979-1.298c-.469-.47-.948-.688-1.43-.64-.489.044-.934.353-1.324.917a.5.5 0 0 0 .63.734c.589-.286 1.104-.344 1.62-.181a.498.498 0 0 0 .504-.83" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
TheatreMask2.displayName = 'TheatreMask2';
|
|
13
|
+
export default TheatreMask2;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface TimerProgressProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const TimerProgress: React.ForwardRefExoticComponent<Omit<TimerProgressProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default TimerProgress;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const TimerProgress = 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: "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: "11.77", cy: "15.7", r: ".75", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "9", cy: "16.25", 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("path", { d: "M12 12.75a.75.75 0 0 1-.53-.22l-3-3a.75.75 0 1 1 1.06-1.06l3 3a.75.75 0 0 1-.53 1.28" }), _jsx("path", { d: "M14.127 14.876a.75.75 0 0 1-.53-1.28A6.46 6.46 0 0 0 15.5 9c0-3.584-2.916-6.5-6.5-6.5A.75.75 0 0 1 9 1c4.411 0 8 3.589 8 8a7.95 7.95 0 0 1-2.343 5.656.75.75 0 0 1-.53.22" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
TimerProgress.displayName = 'TimerProgress';
|
|
13
|
+
export default TimerProgress;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface TimerProgress2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const TimerProgress2: React.ForwardRefExoticComponent<Omit<TimerProgress2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default TimerProgress2;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const TimerProgress2 = 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: "3.87", cy: "3.87", 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("path", { d: "M9 9.75H4.757a.75.75 0 0 1 0-1.5H9a.75.75 0 0 1 0 1.5" }), _jsx("path", { d: "M9 17c-4.411 0-8-3.589-8-8a.75.75 0 0 1 1.5 0c0 3.584 2.916 6.5 6.5 6.5s6.5-2.916 6.5-6.5S12.584 2.5 9 2.5A.75.75 0 0 1 9 1c4.411 0 8 3.589 8 8s-3.589 8-8 8" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
TimerProgress2.displayName = 'TimerProgress2';
|
|
13
|
+
export default TimerProgress2;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface TransactionSplitProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const TransactionSplit: React.ForwardRefExoticComponent<Omit<TransactionSplitProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default TransactionSplit;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const TransactionSplit = 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.5 3H3.75A2.753 2.753 0 0 0 1 5.75v6.5A2.753 2.753 0 0 0 3.75 15H9.5zm4.75 0H11v12h3.25A2.753 2.753 0 0 0 17 12.25v-6.5A2.753 2.753 0 0 0 14.25 3", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M8.843 10.24c-.034-.004-.06-.023-.093-.03V7.79c.032-.7.06-.26.093-.03a.75.75 0 1 0-.186-1.489C7.285 6.443 6.25 7.616 6.25 9s1.035 2.558 2.407 2.729a.75.75 0 1 0 .186-1.488Z" }), _jsx("path", { d: "M8.75 17.5a.75.75 0 0 1-.75-.75V1.25a.75.75 0 0 1 1.5 0v15.5a.75.75 0 0 1-.75.75M1 5.75v1.5h.5A3.75 3.75 0 0 0 5.25 3.5V3h-1.5A2.75 2.75 0 0 0 1 5.75m16 0v1.5h-.5a3.75 3.75 0 0 1-3.75-3.75V3h1.5A2.75 2.75 0 0 1 17 5.75m-16 6.5v-1.5h.5a3.75 3.75 0 0 1 3.75 3.75v.5h-1.5A2.75 2.75 0 0 1 1 12.25m16 0v-1.5h-.5a3.75 3.75 0 0 0-3.75 3.75v.5h1.5A2.75 2.75 0 0 0 17 12.25" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
TransactionSplit.displayName = 'TransactionSplit';
|
|
13
|
+
export default TransactionSplit;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface Undo2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Undo2: React.ForwardRefExoticComponent<Omit<Undo2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Undo2;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Undo2 = 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.5a7.48 7.48 0 0 1-6.666-4.061.75.75 0 0 1 1.332-.688A5.98 5.98 0 0 0 9 15c3.309 0 6-2.692 6-6s-2.691-6-6-6c-1.602 0-3.11.623-4.243 1.756a.75.75 0 1 1-1.06-1.06A7.45 7.45 0 0 1 9 1.5c4.136 0 7.5 3.364 7.5 7.5s-3.364 7.5-7.5 7.5", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m6.894 5.083-3.461-3.19a.75.75 0 0 0-1.252.455l-.498 3.795a.75.75 0 0 0 .857.84l3.96-.609a.749.749 0 0 0 .394-1.293" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Undo2.displayName = 'Undo2';
|
|
13
|
+
export default Undo2;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface Undo3Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Undo3: React.ForwardRefExoticComponent<Omit<Undo3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Undo3;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Undo3 = 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.02 16.5a7.5 7.5 0 0 1-6.207-3.289.75.75 0 1 1 1.241-.842 6 6 0 0 0 4.965 2.63c3.309 0 6-2.69 6-6s-2.691-6-6-6a5.99 5.99 0 0 0-5.527 3.664.75.75 0 1 1-1.382-.585A7.49 7.49 0 0 1 9.02 1.5c4.135 0 7.5 3.364 7.5 7.5s-3.365 7.5-7.5 7.5", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M2.538 7.5a.75.75 0 0 1-.742-.647L1.263 3.02a.75.75 0 1 1 1.486-.206l.428 3.09 3.09-.432a.75.75 0 1 1 .207 1.485l-3.833.536a1 1 0 0 1-.104.007" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Undo3.displayName = 'Undo3';
|
|
13
|
+
export default Undo3;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface UnicornHeadProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const UnicornHead: React.ForwardRefExoticComponent<Omit<UnicornHeadProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default UnicornHead;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const UnicornHead = 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.957 5.644C13.87 1.786 9.817 1.08 7.588 1.002a.748.748 0 0 0-.766.874L7.19 4.06 1.732 8.694c-.662.564-.9 1.49-.595 2.302l.74.2a2.075 2.075 0 0 0 2.6 1.237l1.118-.4c.469-.148.993.006 1.658.202.465.137.998.294 1.605.365 1.626.235 3.76-.53 3.76-.53s-1.364 1.818-4.57 1.634c-.47.535-1.004 1.142-1.352 2.336a.75.75 0 0 0 .72.96H15c.316 0 .626-.274.733-.571 1.607-4.46 1.682-8.088.224-10.785", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "8.5", cy: "7.5", r: "1" }), _jsx("path", { d: "M5.11 5.827 7.19 4.06l-.038-.228-3.98-2.702a.75.75 0 0 0-1.003 1.095z" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
UnicornHead.displayName = 'UnicornHead';
|
|
13
|
+
export default UnicornHead;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface UserContactProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const UserContact: React.ForwardRefExoticComponent<Omit<UserContactProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default UserContact;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const UserContact = 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: "M5.75 1A2.75 2.75 0 0 0 3 3.75v10.5A2.75 2.75 0 0 0 5.75 17h6.5A2.75 2.75 0 0 0 15 14.25V3.75A2.75 2.75 0 0 0 12.25 1z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M11.75 1v.75c0 .69-.56 1.25-1.25 1.25h-3c-.69 0-1.25-.56-1.25-1.25V1zM9 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m2.101 5H6.9c-.407 0-.79-.199-1.027-.532a1.24 1.24 0 0 1-.162-1.123C6.198 9.943 7.52 9 9 9s2.802.943 3.291 2.346c.13.375.7.795-.162 1.122a1.26 1.26 0 0 1-1.028.532" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
UserContact.displayName = 'UserContact';
|
|
13
|
+
export default UserContact;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface UserVoice2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const UserVoice2: React.ForwardRefExoticComponent<Omit<UserVoice2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default UserVoice2;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const UserVoice2 = 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.444 6.945a.75.75 0 0 1-.53-1.28c.378-.378.586-.88.586-1.414s-.208-1.037-.586-1.415a.75.75 0 1 1 1.06-1.06C15.637 2.436 16 3.316 16 4.25s-.364 1.814-1.026 2.475a.75.75 0 0 1-.53.22m-10.888 0a.75.75 0 0 1-.53-.22C2.363 6.065 2 5.185 2 4.25s.364-1.814 1.025-2.474a.75.75 0 1 1 1.06 1.06c-.377.378-.585.88-.585 1.414s.208 1.037.586 1.415a.75.75 0 0 1-.53 1.28m-.951 6.222a6.99 6.99 0 0 1 12.677-.242c.74.152.147.308.198.464.385 1.191-.299 2.466-1.493 2.842a16.6 16.6 0 0 1-9.974 0c-1.269-.4-1.961-1.812-1.408-3.064", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M9 7.5A3.25 3.25 0 1 0 9 1a3.25 3.25 0 0 0 0 6.5" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
UserVoice2.displayName = 'UserVoice2';
|
|
13
|
+
export default UserVoice2;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface VipBadgeProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const VipBadge: React.ForwardRefExoticComponent<Omit<VipBadgeProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default VipBadge;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const VipBadge = 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 6.611a.75.75 0 0 0-.75.75v4.389a.75.75 0 0 0 1.5 0V7.361a.75.75 0 0 0-.75-.75m-5.694 5.423a.75.75 0 0 0 1.388 0l2.25-5.5a.75.75 0 0 0-1.388-.568L4 9.769 2.444 5.966a.75.75 0 1 0-1.388.568zm8.944.466a.75.75 0 0 0 .75-.75V10.5h1.496c.668 0 1.297-.26 1.77-.734s.731-1.103.73-1.772a2.504 2.504 0 0 0-2.5-2.494H12.25a.75.75 0 0 0-.75.75v5.5c0 .414.336.75.75.75M13 7h1.496a1.002 1.002 0 0 1 .708 1.706 1 1 0 0 1-.708.294H13zM7.383 3.591l.946.32.316.95c.51.15.194.25.355.25s.305-.1.355-.25l.316-.95.946-.32c.153-.5.257-.19.257-.35s-.103-.31-.256-.36l-.946-.31-.316-.95c-.102-.31-.609-.31-.711 0l-.316.95-.946.31a.38.38 0 0 0-.257.36c0 .16.104.3.257.35" }), _jsx("path", { d: "M16.25 2.5h-3.126a.75.75 0 0 0 0 1.5h3.126a.75.75 0 0 0 0-1.5M1.75 4h3.126a.75.75 0 0 0 0-1.5H1.75a.75.75 0 0 0 0 1.5m14.5 10H1.75a.75.75 0 0 0 0 1.5h14.5a.75.75 0 0 0 0-1.5", "data-color": "color-2", opacity: ".4" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
VipBadge.displayName = 'VipBadge';
|
|
13
|
+
export default VipBadge;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface VoiceCaptionProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const VoiceCaption: React.ForwardRefExoticComponent<Omit<VoiceCaptionProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default VoiceCaption;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const VoiceCaption = 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: "M5.75 10.5h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5M8 7.25a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0 0 1.5h4.5A.75.75 0 0 0 8 7.25M2.75 4h12.5a.75.75 0 0 0 0-1.5H2.75a.75.75 0 0 0 0 1.5", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M16.646 12.363a.75.75 0 0 0-1.033.241c-.738 1.187-1.995 1.896-3.363 1.896s-2.625-.709-3.363-1.896a.751.751 0 0 0-1.274.792 5.45 5.45 0 0 0 3.887 2.55v.304a.75.75 0 0 0 1.5 0v-.305a5.45 5.45 0 0 0 3.887-2.549.75.75 0 0 0-.241-1.033" }), _jsx("path", { d: "M9.75 9v1.5c0 1.378 1.122 2.5 2.5 2.5s2.5-1.122 2.5-2.5V9c0-1.378-1.122-2.5-2.5-2.5S9.75 7.622 9.75 9" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
VoiceCaption.displayName = 'VoiceCaption';
|
|
13
|
+
export default VoiceCaption;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface WalletCoinsProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const WalletCoins: React.ForwardRefExoticComponent<Omit<WalletCoinsProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default WalletCoins;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const WalletCoins = 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 6 3.766 5.998a.75.75 0 0 1 0-1.5H14.5V3.75A1.75 1.75 0 0 0 12.75 2h-8.5A2.75 2.75 0 0 0 1.5 4.75V8.5H7c1.378 0 2.5 1.122 2.5 2.5v1l-.1.012A2.49 2.49 0 0 1 10.5 14v1c0 .356-.77.693-.212 1h4.462a1.75 1.75 0 0 0 1.75-1.75v-6.5A1.75 1.75 0 0 0 14.75 6", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M12.75 12.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5" }), _jsx("path", { d: "M7 10H1a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-1a1 1 0 0 0-1-1", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M8 13H2a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-1a1 1 0 0 0-1-1" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
WalletCoins.displayName = 'WalletCoins';
|
|
13
|
+
export default WalletCoins;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface WeightProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Weight: React.ForwardRefExoticComponent<Omit<WeightProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Weight;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Weight = 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.695 13.392-.723-5.5A2.76 2.76 0 0 0 12.246 5.5H5.754a2.76 2.76 0 0 0-2.726 2.392l-.723 5.5A2.75 2.75 0 0 0 5.03 16.5h7.939a2.75 2.75 0 0 0 2.725-3.11", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M9 5.5c-.827 0-1.5-.673-1.5-1.5S8.173 2.5 9 2.5s1.5.673 1.5 1.5S9.827 5.5 9 5.5h2.583C11.84 5.057 12 4.549 12 4c0-1.654-1.346-3-3-3S6 2.346 6 4c0 .549.159 1.057.417 1.5z" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Weight.displayName = 'Weight';
|
|
13
|
+
export default Weight;
|