@viraui/react 0.0.16 → 0.0.18
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/catalog.json +18 -0
- package/dist/components/avatar/avatar.css +1 -55
- package/dist/components/avatar/avatar.d.ts +1 -2
- package/dist/components/avatar/avatar.js +49 -14
- package/dist/components/avatar/avatar.module.js +7 -0
- package/dist/components/avatar/index.d.ts +2 -2
- package/dist/components/basic-input/basic-input.css +1 -45
- package/dist/components/basic-input/basic-input.d.ts +0 -1
- package/dist/components/basic-input/basic-input.js +24 -13
- package/dist/components/basic-input/basic-input.module.js +3 -0
- package/dist/components/basic-input/field-helper-copy.d.ts +2 -1
- package/dist/components/basic-input/field-helper-copy.js +43 -24
- package/dist/components/basic-input/field-label.css +1 -0
- package/dist/components/basic-input/field-label.d.ts +11 -0
- package/dist/components/basic-input/field-label.js +25 -0
- package/dist/components/basic-input/field-label.module.js +3 -0
- package/dist/components/basic-input/index.d.ts +7 -2
- package/dist/components/basic-input/input-control-group.d.ts +2 -0
- package/dist/components/basic-input/input-control-group.js +40 -7
- package/dist/components/button/button.css +1 -157
- package/dist/components/button/button.d.ts +2 -3
- package/dist/components/button/button.js +100 -55
- package/dist/components/button/button.module.js +7 -0
- package/dist/components/button/index.d.ts +2 -2
- package/dist/components/checkbox/checkbox.css +1 -0
- package/dist/components/checkbox/checkbox.d.ts +65 -0
- package/dist/components/checkbox/checkbox.guide.json +22 -0
- package/dist/components/checkbox/checkbox.js +76 -0
- package/dist/components/checkbox/checkbox.module.js +10 -0
- package/dist/components/checkbox/index.d.ts +2 -0
- package/dist/components/clamp-text/clamp-text.css +1 -12
- package/dist/components/clamp-text/clamp-text.d.ts +1 -2
- package/dist/components/clamp-text/clamp-text.js +27 -22
- package/dist/components/clamp-text/clamp-text.module.js +3 -0
- package/dist/components/clamp-text/index.d.ts +2 -2
- package/dist/components/elevator/elevator.d.ts +5 -5
- package/dist/components/elevator/elevator.js +27 -27
- package/dist/components/elevator/index.d.ts +2 -2
- package/dist/components/icon/icon.css +1 -7
- package/dist/components/icon/icon.d.ts +2 -3
- package/dist/components/icon/icon.js +18 -9
- package/dist/components/icon/icon.module.js +3 -0
- package/dist/components/icon/index.d.ts +2 -2
- package/dist/components/icon-button/icon-button.d.ts +2 -2
- package/dist/components/icon-button/icon-button.js +10 -3
- package/dist/components/icon-button/index.d.ts +2 -2
- package/dist/components/index.d.ts +20 -17
- package/dist/components/linear-progress/index.d.ts +2 -0
- package/dist/components/linear-progress/linear-progress.css +1 -0
- package/dist/components/linear-progress/linear-progress.d.ts +44 -0
- package/dist/components/linear-progress/linear-progress.guide.json +27 -0
- package/dist/components/linear-progress/linear-progress.js +61 -0
- package/dist/components/linear-progress/linear-progress.module.js +8 -0
- package/dist/components/radio/index.d.ts +4 -0
- package/dist/components/radio/radio-group.d.ts +44 -0
- package/dist/components/radio/radio-group.js +54 -0
- package/dist/components/radio/radio.css +1 -0
- package/dist/components/radio/radio.d.ts +44 -0
- package/dist/components/radio/radio.guide.json +26 -0
- package/dist/components/radio/radio.js +45 -0
- package/dist/components/radio/radio.module.js +9 -0
- package/dist/components/select/index.d.ts +2 -2
- package/dist/components/select/select-group.d.ts +1 -1
- package/dist/components/select/select-group.js +37 -9
- package/dist/components/select/select-indicator-slot.js +33 -10
- package/dist/components/select/select-option.d.ts +1 -1
- package/dist/components/select/select-option.js +40 -10
- package/dist/components/select/select-separator.js +14 -6
- package/dist/components/select/select.css +1 -193
- package/dist/components/select/select.d.ts +10 -11
- package/dist/components/select/select.js +156 -32
- package/dist/components/select/select.module.js +19 -0
- package/dist/components/skeleton/index.d.ts +2 -2
- package/dist/components/skeleton/skeleton.css +1 -36
- package/dist/components/skeleton/skeleton.d.ts +2 -3
- package/dist/components/skeleton/skeleton.js +26 -15
- package/dist/components/skeleton/skeleton.module.js +6 -0
- package/dist/components/slider/index.d.ts +2 -2
- package/dist/components/slider/slider-control.d.ts +1 -2
- package/dist/components/slider/slider-control.js +43 -19
- package/dist/components/slider/slider-utils.js +6 -3
- package/dist/components/slider/slider.css +1 -64
- package/dist/components/slider/slider.d.ts +5 -8
- package/dist/components/slider/slider.js +83 -17
- package/dist/components/slider/slider.module.js +12 -0
- package/dist/components/spinner/index.d.ts +2 -2
- package/dist/components/spinner/spinner.css +1 -45
- package/dist/components/spinner/spinner.d.ts +1 -2
- package/dist/components/spinner/spinner.js +29 -6
- package/dist/components/spinner/spinner.module.js +7 -0
- package/dist/components/stack/index.d.ts +2 -2
- package/dist/components/stack/stack.css +1 -57
- package/dist/components/stack/stack.d.ts +2 -3
- package/dist/components/stack/stack.js +40 -36
- package/dist/components/stack/stack.module.js +3 -0
- package/dist/components/surface/index.d.ts +2 -2
- package/dist/components/surface/surface.css +1 -70
- package/dist/components/surface/surface.d.ts +10 -6
- package/dist/components/surface/surface.js +43 -40
- package/dist/components/surface/surface.module.js +6 -0
- package/dist/components/switch/index.d.ts +2 -2
- package/dist/components/switch/switch.css +1 -73
- package/dist/components/switch/switch.d.ts +17 -5
- package/dist/components/switch/switch.js +62 -13
- package/dist/components/switch/switch.module.js +7 -0
- package/dist/components/text/index.d.ts +2 -2
- package/dist/components/text/text.css +1 -145
- package/dist/components/text/text.d.ts +8 -3
- package/dist/components/text/text.js +46 -41
- package/dist/components/text/text.module.js +3 -0
- package/dist/components/textarea/index.d.ts +2 -2
- package/dist/components/textarea/textarea.css +1 -45
- package/dist/components/textarea/textarea.d.ts +3 -4
- package/dist/components/textarea/textarea.js +51 -11
- package/dist/components/textarea/textarea.module.js +7 -0
- package/dist/components/textfield/index.d.ts +2 -2
- package/dist/components/textfield/textfield.css +1 -87
- package/dist/components/textfield/textfield.d.ts +3 -4
- package/dist/components/textfield/textfield.js +58 -12
- package/dist/components/textfield/textfield.module.js +9 -0
- package/dist/components/title/index.d.ts +2 -2
- package/dist/components/title/title.css +1 -137
- package/dist/components/title/title.d.ts +8 -3
- package/dist/components/title/title.js +44 -39
- package/dist/components/title/title.module.js +3 -0
- package/dist/consumption.json +6 -2
- package/dist/core/elevation/elevation-types.js +6 -3
- package/dist/core/elevation/get-elevation-props.d.ts +1 -1
- package/dist/core/elevation/get-elevation-props.js +14 -11
- package/dist/core/props/intrinsic-vira-props.js +12 -9
- package/dist/core/styles/resolve-axis-padding.d.ts +1 -1
- package/dist/core/styles/resolve-axis-padding.js +15 -16
- package/dist/core/theme/resolve-theme-value.d.ts +1 -1
- package/dist/core/theme/resolve-theme-value.js +7 -6
- package/dist/index.d.ts +2 -2
- package/dist/index.js +24 -1
- package/dist/internal-icons/icon-registry.d.ts +33 -239
- package/dist/internal-icons/icon-registry.js +52 -670
- package/dist/internal-icons/icons/duo/CaretDown.js +1 -1
- package/dist/internal-icons/icons/duo/CaretLeft.js +1 -1
- package/dist/internal-icons/icons/duo/CaretRight.js +1 -1
- package/dist/internal-icons/icons/duo/CaretUp.js +1 -1
- package/dist/internal-icons/icons/duo/CircleHalfDottedClock.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleHalfDottedClock.js +13 -0
- package/dist/internal-icons/icons/duo/{Embed.d.ts → Clock.d.ts} +3 -3
- package/dist/internal-icons/icons/duo/Clock.js +13 -0
- package/dist/internal-icons/icons/duo/History.d.ts +7 -0
- package/dist/internal-icons/icons/duo/History.js +13 -0
- package/dist/internal-icons/icons/duo/{Box3.d.ts → Lock.d.ts} +3 -3
- package/dist/internal-icons/icons/duo/Lock.js +13 -0
- package/dist/internal-icons/icons/duo/LockOpen.d.ts +7 -0
- package/dist/internal-icons/icons/duo/LockOpen.js +13 -0
- package/dist/internal-icons/icons/duo/Magnifier.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Magnifier.js +13 -0
- package/dist/internal-icons/icons/duo/{Child.d.ts → Minus.d.ts} +3 -3
- package/dist/internal-icons/icons/duo/{ShapeRectangle.js → Minus.js} +4 -4
- package/dist/internal-icons/icons/duo/{Task.d.ts → Plus.d.ts} +3 -3
- package/dist/internal-icons/icons/duo/{ProfileBasic.js → Plus.js} +4 -4
- package/dist/internal-icons/icons/duo/Quickstart.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Quickstart.js +13 -0
- package/dist/internal-icons/icons/duo/{Img4k.d.ts → Xmark.d.ts} +3 -3
- package/dist/internal-icons/icons/duo/Xmark.js +13 -0
- package/dist/internal-icons/icons/duo/index.d.ts +33 -239
- package/dist/internal-icons/icons/duo/index.js +33 -239
- package/dist/preflight.css +1 -1
- package/package.json +10 -9
- package/dist/components/avatar/index.js +0 -1
- package/dist/components/basic-input/index.js +0 -1
- package/dist/components/button/index.js +0 -1
- package/dist/components/clamp-text/index.js +0 -1
- package/dist/components/elevator/index.js +0 -1
- package/dist/components/icon/index.js +0 -1
- package/dist/components/icon-button/index.js +0 -1
- package/dist/components/index.js +0 -17
- package/dist/components/select/index.js +0 -1
- package/dist/components/skeleton/index.js +0 -1
- package/dist/components/slider/index.js +0 -1
- package/dist/components/slider/slider-control.css +0 -71
- package/dist/components/spinner/index.js +0 -1
- package/dist/components/stack/index.js +0 -1
- package/dist/components/surface/index.js +0 -1
- package/dist/components/switch/index.js +0 -1
- package/dist/components/text/index.js +0 -1
- package/dist/components/textarea/index.js +0 -1
- package/dist/components/textfield/index.js +0 -1
- package/dist/components/title/index.js +0 -1
- package/dist/internal-icons/icons/duo/AddSection.d.ts +0 -7
- package/dist/internal-icons/icons/duo/AddSection.js +0 -13
- package/dist/internal-icons/icons/duo/AiDeveloper.d.ts +0 -7
- package/dist/internal-icons/icons/duo/AiDeveloper.js +0 -13
- package/dist/internal-icons/icons/duo/AiLoading.d.ts +0 -7
- package/dist/internal-icons/icons/duo/AiLoading.js +0 -13
- package/dist/internal-icons/icons/duo/Album3.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Album3.js +0 -13
- package/dist/internal-icons/icons/duo/ArchiveContent2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ArchiveContent2.js +0 -13
- package/dist/internal-icons/icons/duo/ArrowRotate.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ArrowRotate.js +0 -13
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseCheck.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseCheck.js +0 -13
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseSlash.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseSlash.js +0 -13
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseXmark.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseXmark.js +0 -13
- package/dist/internal-icons/icons/duo/ArrowRotateClockwiseSlash.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ArrowRotateClockwiseSlash.js +0 -13
- package/dist/internal-icons/icons/duo/ArrowsFilter.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ArrowsFilter.js +0 -13
- package/dist/internal-icons/icons/duo/ArrowsToLineY2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ArrowsToLineY2.js +0 -13
- package/dist/internal-icons/icons/duo/Birdhouse.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Birdhouse.js +0 -13
- package/dist/internal-icons/icons/duo/BookmarkList.d.ts +0 -7
- package/dist/internal-icons/icons/duo/BookmarkList.js +0 -13
- package/dist/internal-icons/icons/duo/BookmarkedBook.d.ts +0 -7
- package/dist/internal-icons/icons/duo/BookmarkedBook.js +0 -13
- package/dist/internal-icons/icons/duo/BookmarkedBook2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/BookmarkedBook2.js +0 -13
- package/dist/internal-icons/icons/duo/Box3.js +0 -13
- package/dist/internal-icons/icons/duo/BoxSparkle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/BoxSparkle.js +0 -13
- package/dist/internal-icons/icons/duo/BoxSparkle2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/BoxSparkle2.js +0 -13
- package/dist/internal-icons/icons/duo/Brochure.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Brochure.js +0 -13
- package/dist/internal-icons/icons/duo/ButtonPlus.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ButtonPlus.js +0 -13
- package/dist/internal-icons/icons/duo/Calculator3.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Calculator3.js +0 -13
- package/dist/internal-icons/icons/duo/Chart3.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Chart3.js +0 -13
- package/dist/internal-icons/icons/duo/ChartBar.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ChartBar.js +0 -13
- package/dist/internal-icons/icons/duo/ChartCandlestick2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ChartCandlestick2.js +0 -13
- package/dist/internal-icons/icons/duo/ChatImage.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ChatImage.js +0 -13
- package/dist/internal-icons/icons/duo/ChatInfo.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ChatInfo.js +0 -13
- package/dist/internal-icons/icons/duo/ChatTask.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ChatTask.js +0 -13
- package/dist/internal-icons/icons/duo/CheckBoxArrow.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CheckBoxArrow.js +0 -13
- package/dist/internal-icons/icons/duo/ChevronLeftToLine.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ChevronLeftToLine.js +0 -13
- package/dist/internal-icons/icons/duo/ChevronRightToLine.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ChevronRightToLine.js +0 -13
- package/dist/internal-icons/icons/duo/Child.js +0 -13
- package/dist/internal-icons/icons/duo/CircleCoinIn.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CircleCoinIn.js +0 -13
- package/dist/internal-icons/icons/duo/CircleCoinOut.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CircleCoinOut.js +0 -13
- package/dist/internal-icons/icons/duo/CircleCoinPlus.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CircleCoinPlus.js +0 -13
- package/dist/internal-icons/icons/duo/CircleConversion.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CircleConversion.js +0 -13
- package/dist/internal-icons/icons/duo/CircleCross.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CircleCross.js +0 -13
- package/dist/internal-icons/icons/duo/CircleHalfArrowDown.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CircleHalfArrowDown.js +0 -13
- package/dist/internal-icons/icons/duo/CircleHalfArrowLeft.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CircleHalfArrowLeft.js +0 -13
- package/dist/internal-icons/icons/duo/CircleHalfArrowRight.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CircleHalfArrowRight.js +0 -13
- package/dist/internal-icons/icons/duo/CircleHalfArrowUp.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CircleHalfArrowUp.js +0 -13
- package/dist/internal-icons/icons/duo/CircleHalfDottedChart2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CircleHalfDottedChart2.js +0 -13
- package/dist/internal-icons/icons/duo/ClockTime.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ClockTime.js +0 -13
- package/dist/internal-icons/icons/duo/CloneDashed3.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CloneDashed3.js +0 -13
- package/dist/internal-icons/icons/duo/CloneImageDashed.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CloneImageDashed.js +0 -13
- package/dist/internal-icons/icons/duo/CloneVideoDashed.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CloneVideoDashed.js +0 -13
- package/dist/internal-icons/icons/duo/CloudeCode.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CloudeCode.js +0 -13
- package/dist/internal-icons/icons/duo/CoinStack.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CoinStack.js +0 -13
- package/dist/internal-icons/icons/duo/ConditionalLogic.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ConditionalLogic.js +0 -13
- package/dist/internal-icons/icons/duo/ConnectPlus.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ConnectPlus.js +0 -13
- package/dist/internal-icons/icons/duo/Connection3.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Connection3.js +0 -13
- package/dist/internal-icons/icons/duo/CopyDelete.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CopyDelete.js +0 -13
- package/dist/internal-icons/icons/duo/CopyId.d.ts +0 -7
- package/dist/internal-icons/icons/duo/CopyId.js +0 -13
- package/dist/internal-icons/icons/duo/Deaf.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Deaf.js +0 -13
- package/dist/internal-icons/icons/duo/DependencyLink.d.ts +0 -7
- package/dist/internal-icons/icons/duo/DependencyLink.js +0 -13
- package/dist/internal-icons/icons/duo/DesktopDock.d.ts +0 -7
- package/dist/internal-icons/icons/duo/DesktopDock.js +0 -13
- package/dist/internal-icons/icons/duo/DiamondSparkle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/DiamondSparkle.js +0 -13
- package/dist/internal-icons/icons/duo/DocumentScan.d.ts +0 -7
- package/dist/internal-icons/icons/duo/DocumentScan.js +0 -13
- package/dist/internal-icons/icons/duo/Dog2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Dog2.js +0 -13
- package/dist/internal-icons/icons/duo/DogLeash.d.ts +0 -7
- package/dist/internal-icons/icons/duo/DogLeash.js +0 -13
- package/dist/internal-icons/icons/duo/DogSlash.d.ts +0 -7
- package/dist/internal-icons/icons/duo/DogSlash.js +0 -13
- package/dist/internal-icons/icons/duo/DotFormation.d.ts +0 -7
- package/dist/internal-icons/icons/duo/DotFormation.js +0 -13
- package/dist/internal-icons/icons/duo/DrawFinger.d.ts +0 -7
- package/dist/internal-icons/icons/duo/DrawFinger.js +0 -13
- package/dist/internal-icons/icons/duo/Ear.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Ear.js +0 -13
- package/dist/internal-icons/icons/duo/EarSound.d.ts +0 -7
- package/dist/internal-icons/icons/duo/EarSound.js +0 -13
- package/dist/internal-icons/icons/duo/Embed.js +0 -13
- package/dist/internal-icons/icons/duo/EnterDoor.d.ts +0 -7
- package/dist/internal-icons/icons/duo/EnterDoor.js +0 -13
- package/dist/internal-icons/icons/duo/EnterHome.d.ts +0 -7
- package/dist/internal-icons/icons/duo/EnterHome.js +0 -13
- package/dist/internal-icons/icons/duo/ExitDoor.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ExitDoor.js +0 -13
- package/dist/internal-icons/icons/duo/Export2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Export2.js +0 -13
- package/dist/internal-icons/icons/duo/EyeSparkle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/EyeSparkle.js +0 -13
- package/dist/internal-icons/icons/duo/FaceRobot.d.ts +0 -7
- package/dist/internal-icons/icons/duo/FaceRobot.js +0 -13
- package/dist/internal-icons/icons/duo/FaceRobot2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/FaceRobot2.js +0 -13
- package/dist/internal-icons/icons/duo/FaceRobot3.d.ts +0 -7
- package/dist/internal-icons/icons/duo/FaceRobot3.js +0 -13
- package/dist/internal-icons/icons/duo/FerrisWheel.d.ts +0 -7
- package/dist/internal-icons/icons/duo/FerrisWheel.js +0 -13
- package/dist/internal-icons/icons/duo/FileExport.d.ts +0 -7
- package/dist/internal-icons/icons/duo/FileExport.js +0 -13
- package/dist/internal-icons/icons/duo/FlagMenu.d.ts +0 -7
- package/dist/internal-icons/icons/duo/FlagMenu.js +0 -13
- package/dist/internal-icons/icons/duo/FocusCenter.d.ts +0 -7
- package/dist/internal-icons/icons/duo/FocusCenter.js +0 -13
- package/dist/internal-icons/icons/duo/FoodOrder.d.ts +0 -7
- package/dist/internal-icons/icons/duo/FoodOrder.js +0 -13
- package/dist/internal-icons/icons/duo/FuelCan.d.ts +0 -7
- package/dist/internal-icons/icons/duo/FuelCan.js +0 -13
- package/dist/internal-icons/icons/duo/FuelCan2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/FuelCan2.js +0 -13
- package/dist/internal-icons/icons/duo/Gear3Sparkle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Gear3Sparkle.js +0 -13
- package/dist/internal-icons/icons/duo/GridSparkle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/GridSparkle.js +0 -13
- package/dist/internal-icons/icons/duo/HandHoldingGlobe.d.ts +0 -7
- package/dist/internal-icons/icons/duo/HandHoldingGlobe.js +0 -13
- package/dist/internal-icons/icons/duo/Handshake2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Handshake2.js +0 -13
- package/dist/internal-icons/icons/duo/Haptic.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Haptic.js +0 -13
- package/dist/internal-icons/icons/duo/HelpChat.d.ts +0 -7
- package/dist/internal-icons/icons/duo/HelpChat.js +0 -13
- package/dist/internal-icons/icons/duo/HexagonSparkle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/HexagonSparkle.js +0 -13
- package/dist/internal-icons/icons/duo/Hiking.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Hiking.js +0 -13
- package/dist/internal-icons/icons/duo/History2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/History2.js +0 -13
- package/dist/internal-icons/icons/duo/HorseHead.d.ts +0 -7
- package/dist/internal-icons/icons/duo/HorseHead.js +0 -13
- package/dist/internal-icons/icons/duo/HouseDollarSign.d.ts +0 -7
- package/dist/internal-icons/icons/duo/HouseDollarSign.js +0 -13
- package/dist/internal-icons/icons/duo/HouseMinus2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/HouseMinus2.js +0 -13
- package/dist/internal-icons/icons/duo/Images3.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Images3.js +0 -13
- package/dist/internal-icons/icons/duo/Img4k.js +0 -13
- package/dist/internal-icons/icons/duo/InsertCrypto.d.ts +0 -7
- package/dist/internal-icons/icons/duo/InsertCrypto.js +0 -13
- package/dist/internal-icons/icons/duo/InsertDollar.d.ts +0 -7
- package/dist/internal-icons/icons/duo/InsertDollar.js +0 -13
- package/dist/internal-icons/icons/duo/InstantMoney.d.ts +0 -7
- package/dist/internal-icons/icons/duo/InstantMoney.js +0 -13
- package/dist/internal-icons/icons/duo/InvoiceIn.d.ts +0 -7
- package/dist/internal-icons/icons/duo/InvoiceIn.js +0 -13
- package/dist/internal-icons/icons/duo/InwardFlow.d.ts +0 -7
- package/dist/internal-icons/icons/duo/InwardFlow.js +0 -13
- package/dist/internal-icons/icons/duo/JoinedHands.d.ts +0 -7
- package/dist/internal-icons/icons/duo/JoinedHands.js +0 -13
- package/dist/internal-icons/icons/duo/LawShield.d.ts +0 -7
- package/dist/internal-icons/icons/duo/LawShield.js +0 -13
- package/dist/internal-icons/icons/duo/Lectern.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Lectern.js +0 -13
- package/dist/internal-icons/icons/duo/Lectern2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Lectern2.js +0 -13
- package/dist/internal-icons/icons/duo/LightSpark.d.ts +0 -7
- package/dist/internal-icons/icons/duo/LightSpark.js +0 -13
- package/dist/internal-icons/icons/duo/LightSpark2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/LightSpark2.js +0 -13
- package/dist/internal-icons/icons/duo/ListExport.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ListExport.js +0 -13
- package/dist/internal-icons/icons/duo/ListFavs3.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ListFavs3.js +0 -13
- package/dist/internal-icons/icons/duo/ListFavs4.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ListFavs4.js +0 -13
- package/dist/internal-icons/icons/duo/LoadingStatus.d.ts +0 -7
- package/dist/internal-icons/icons/duo/LoadingStatus.js +0 -13
- package/dist/internal-icons/icons/duo/LoadingStatus2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/LoadingStatus2.js +0 -13
- package/dist/internal-icons/icons/duo/LockedChat.d.ts +0 -7
- package/dist/internal-icons/icons/duo/LockedChat.js +0 -13
- package/dist/internal-icons/icons/duo/MagicHat.d.ts +0 -7
- package/dist/internal-icons/icons/duo/MagicHat.js +0 -13
- package/dist/internal-icons/icons/duo/MagicRabbit.d.ts +0 -7
- package/dist/internal-icons/icons/duo/MagicRabbit.js +0 -13
- package/dist/internal-icons/icons/duo/MagnifierSparkle2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/MagnifierSparkle2.js +0 -13
- package/dist/internal-icons/icons/duo/MediaLibrary2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/MediaLibrary2.js +0 -13
- package/dist/internal-icons/icons/duo/Membership.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Membership.js +0 -13
- package/dist/internal-icons/icons/duo/Menu4.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Menu4.js +0 -13
- package/dist/internal-icons/icons/duo/MilitaryMedal.d.ts +0 -7
- package/dist/internal-icons/icons/duo/MilitaryMedal.js +0 -13
- package/dist/internal-icons/icons/duo/MobileCircuit.d.ts +0 -7
- package/dist/internal-icons/icons/duo/MobileCircuit.js +0 -13
- package/dist/internal-icons/icons/duo/MoneyRefund.d.ts +0 -7
- package/dist/internal-icons/icons/duo/MoneyRefund.js +0 -13
- package/dist/internal-icons/icons/duo/MoneyRefund2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/MoneyRefund2.js +0 -13
- package/dist/internal-icons/icons/duo/MotionAlongPath.d.ts +0 -7
- package/dist/internal-icons/icons/duo/MotionAlongPath.js +0 -13
- package/dist/internal-icons/icons/duo/Msgs2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Msgs2.js +0 -13
- package/dist/internal-icons/icons/duo/Navigation.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Navigation.js +0 -13
- package/dist/internal-icons/icons/duo/NavigationHorizontal.d.ts +0 -7
- package/dist/internal-icons/icons/duo/NavigationHorizontal.js +0 -13
- package/dist/internal-icons/icons/duo/NavigationVertical.d.ts +0 -7
- package/dist/internal-icons/icons/duo/NavigationVertical.js +0 -13
- package/dist/internal-icons/icons/duo/ObjectSelection.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ObjectSelection.js +0 -13
- package/dist/internal-icons/icons/duo/OfficeUser.d.ts +0 -7
- package/dist/internal-icons/icons/duo/OfficeUser.js +0 -13
- package/dist/internal-icons/icons/duo/OpenExternal.d.ts +0 -7
- package/dist/internal-icons/icons/duo/OpenExternal.js +0 -13
- package/dist/internal-icons/icons/duo/OrbitSparkle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/OrbitSparkle.js +0 -13
- package/dist/internal-icons/icons/duo/OutwardFlow.d.ts +0 -7
- package/dist/internal-icons/icons/duo/OutwardFlow.js +0 -13
- package/dist/internal-icons/icons/duo/PaperPlaneFast.d.ts +0 -7
- package/dist/internal-icons/icons/duo/PaperPlaneFast.js +0 -13
- package/dist/internal-icons/icons/duo/Parachute.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Parachute.js +0 -13
- package/dist/internal-icons/icons/duo/Paw.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Paw.js +0 -13
- package/dist/internal-icons/icons/duo/Peace.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Peace.js +0 -13
- package/dist/internal-icons/icons/duo/PicnicTable.d.ts +0 -7
- package/dist/internal-icons/icons/duo/PicnicTable.js +0 -13
- package/dist/internal-icons/icons/duo/Pillow.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Pillow.js +0 -13
- package/dist/internal-icons/icons/duo/Playground.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Playground.js +0 -13
- package/dist/internal-icons/icons/duo/Playlist4.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Playlist4.js +0 -13
- package/dist/internal-icons/icons/duo/Plug3.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Plug3.js +0 -13
- package/dist/internal-icons/icons/duo/Plug3Sparkle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Plug3Sparkle.js +0 -13
- package/dist/internal-icons/icons/duo/PlugOff.d.ts +0 -7
- package/dist/internal-icons/icons/duo/PlugOff.js +0 -13
- package/dist/internal-icons/icons/duo/PlugSparkle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/PlugSparkle.js +0 -13
- package/dist/internal-icons/icons/duo/PopEffect.d.ts +0 -7
- package/dist/internal-icons/icons/duo/PopEffect.js +0 -13
- package/dist/internal-icons/icons/duo/ProfileAnalytics.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ProfileAnalytics.js +0 -13
- package/dist/internal-icons/icons/duo/ProfileBasic.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ProgressIndicator2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ProgressIndicator2.js +0 -13
- package/dist/internal-icons/icons/duo/QuickActions.d.ts +0 -7
- package/dist/internal-icons/icons/duo/QuickActions.js +0 -13
- package/dist/internal-icons/icons/duo/QuickTimer.d.ts +0 -7
- package/dist/internal-icons/icons/duo/QuickTimer.js +0 -13
- package/dist/internal-icons/icons/duo/Rabbit.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Rabbit.js +0 -13
- package/dist/internal-icons/icons/duo/Receipt3.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Receipt3.js +0 -13
- package/dist/internal-icons/icons/duo/Receipt4.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Receipt4.js +0 -13
- package/dist/internal-icons/icons/duo/Redo2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Redo2.js +0 -13
- package/dist/internal-icons/icons/duo/Redo3.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Redo3.js +0 -13
- package/dist/internal-icons/icons/duo/Refresh3AnticlockwiseSlash.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Refresh3AnticlockwiseSlash.js +0 -13
- package/dist/internal-icons/icons/duo/Refresh3ClockwiseSlash.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Refresh3ClockwiseSlash.js +0 -13
- package/dist/internal-icons/icons/duo/RefreshAnticlockwiseSlash.d.ts +0 -7
- package/dist/internal-icons/icons/duo/RefreshAnticlockwiseSlash.js +0 -13
- package/dist/internal-icons/icons/duo/RefreshClockwiseSlash.d.ts +0 -7
- package/dist/internal-icons/icons/duo/RefreshClockwiseSlash.js +0 -13
- package/dist/internal-icons/icons/duo/Refrigerator.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Refrigerator.js +0 -13
- package/dist/internal-icons/icons/duo/RemoteControl.d.ts +0 -7
- package/dist/internal-icons/icons/duo/RemoteControl.js +0 -13
- package/dist/internal-icons/icons/duo/RemoteControl2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/RemoteControl2.js +0 -13
- package/dist/internal-icons/icons/duo/ReportFile.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ReportFile.js +0 -13
- package/dist/internal-icons/icons/duo/Reposition.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Reposition.js +0 -13
- package/dist/internal-icons/icons/duo/Rerouting.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Rerouting.js +0 -13
- package/dist/internal-icons/icons/duo/Robot2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Robot2.js +0 -13
- package/dist/internal-icons/icons/duo/Robot3.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Robot3.js +0 -13
- package/dist/internal-icons/icons/duo/Robot4.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Robot4.js +0 -13
- package/dist/internal-icons/icons/duo/RockOn.d.ts +0 -7
- package/dist/internal-icons/icons/duo/RockOn.js +0 -13
- package/dist/internal-icons/icons/duo/RopeStanchions.d.ts +0 -7
- package/dist/internal-icons/icons/duo/RopeStanchions.js +0 -13
- package/dist/internal-icons/icons/duo/Rotation3602.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Rotation3602.js +0 -13
- package/dist/internal-icons/icons/duo/SavedItems2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/SavedItems2.js +0 -13
- package/dist/internal-icons/icons/duo/ScaleImg4k.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ScaleImg4k.js +0 -13
- package/dist/internal-icons/icons/duo/ScanImage.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ScanImage.js +0 -13
- package/dist/internal-icons/icons/duo/ScissorsSparkle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ScissorsSparkle.js +0 -13
- package/dist/internal-icons/icons/duo/Seatbelt.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Seatbelt.js +0 -13
- package/dist/internal-icons/icons/duo/ShakaHand.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ShakaHand.js +0 -13
- package/dist/internal-icons/icons/duo/ShapeRectangle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Shovel.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Shovel.js +0 -13
- package/dist/internal-icons/icons/duo/ShuffleSparkle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/ShuffleSparkle.js +0 -13
- package/dist/internal-icons/icons/duo/SideProfileQuestion.d.ts +0 -7
- package/dist/internal-icons/icons/duo/SideProfileQuestion.js +0 -13
- package/dist/internal-icons/icons/duo/SideProfileSparkle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/SideProfileSparkle.js +0 -13
- package/dist/internal-icons/icons/duo/SidebarEdit.d.ts +0 -7
- package/dist/internal-icons/icons/duo/SidebarEdit.js +0 -13
- package/dist/internal-icons/icons/duo/SlashCircle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/SlashCircle.js +0 -13
- package/dist/internal-icons/icons/duo/Sliders4.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Sliders4.js +0 -13
- package/dist/internal-icons/icons/duo/Snail.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Snail.js +0 -13
- package/dist/internal-icons/icons/duo/Spiral.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Spiral.js +0 -13
- package/dist/internal-icons/icons/duo/SplitView.d.ts +0 -7
- package/dist/internal-icons/icons/duo/SplitView.js +0 -13
- package/dist/internal-icons/icons/duo/SquareDashedSearchSparkle.d.ts +0 -7
- package/dist/internal-icons/icons/duo/SquareDashedSearchSparkle.js +0 -13
- package/dist/internal-icons/icons/duo/SquareDashedText.d.ts +0 -7
- package/dist/internal-icons/icons/duo/SquareDashedText.js +0 -13
- package/dist/internal-icons/icons/duo/SquarePath.d.ts +0 -7
- package/dist/internal-icons/icons/duo/SquarePath.js +0 -13
- package/dist/internal-icons/icons/duo/Star2Slash.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Star2Slash.js +0 -13
- package/dist/internal-icons/icons/duo/StopSign.d.ts +0 -7
- package/dist/internal-icons/icons/duo/StopSign.js +0 -13
- package/dist/internal-icons/icons/duo/StopwatchBolt.d.ts +0 -7
- package/dist/internal-icons/icons/duo/StopwatchBolt.js +0 -13
- package/dist/internal-icons/icons/duo/SummitFlag.d.ts +0 -7
- package/dist/internal-icons/icons/duo/SummitFlag.js +0 -13
- package/dist/internal-icons/icons/duo/Sunrise2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Sunrise2.js +0 -13
- package/dist/internal-icons/icons/duo/Task.js +0 -13
- package/dist/internal-icons/icons/duo/Task2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Task2.js +0 -13
- package/dist/internal-icons/icons/duo/TaskDebug.d.ts +0 -7
- package/dist/internal-icons/icons/duo/TaskDebug.js +0 -13
- package/dist/internal-icons/icons/duo/TaskSearch.d.ts +0 -7
- package/dist/internal-icons/icons/duo/TaskSearch.js +0 -13
- package/dist/internal-icons/icons/duo/Teepee.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Teepee.js +0 -13
- package/dist/internal-icons/icons/duo/TextAdjust.d.ts +0 -7
- package/dist/internal-icons/icons/duo/TextAdjust.js +0 -13
- package/dist/internal-icons/icons/duo/TheatreMask.d.ts +0 -7
- package/dist/internal-icons/icons/duo/TheatreMask.js +0 -13
- package/dist/internal-icons/icons/duo/TheatreMask2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/TheatreMask2.js +0 -13
- package/dist/internal-icons/icons/duo/TimerProgress.d.ts +0 -7
- package/dist/internal-icons/icons/duo/TimerProgress.js +0 -13
- package/dist/internal-icons/icons/duo/TimerProgress2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/TimerProgress2.js +0 -13
- package/dist/internal-icons/icons/duo/TransactionSplit.d.ts +0 -7
- package/dist/internal-icons/icons/duo/TransactionSplit.js +0 -13
- package/dist/internal-icons/icons/duo/Undo2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Undo2.js +0 -13
- package/dist/internal-icons/icons/duo/Undo3.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Undo3.js +0 -13
- package/dist/internal-icons/icons/duo/UnicornHead.d.ts +0 -7
- package/dist/internal-icons/icons/duo/UnicornHead.js +0 -13
- package/dist/internal-icons/icons/duo/UserContact.d.ts +0 -7
- package/dist/internal-icons/icons/duo/UserContact.js +0 -13
- package/dist/internal-icons/icons/duo/UserVoice2.d.ts +0 -7
- package/dist/internal-icons/icons/duo/UserVoice2.js +0 -13
- package/dist/internal-icons/icons/duo/VipBadge.d.ts +0 -7
- package/dist/internal-icons/icons/duo/VipBadge.js +0 -13
- package/dist/internal-icons/icons/duo/VoiceCaption.d.ts +0 -7
- package/dist/internal-icons/icons/duo/VoiceCaption.js +0 -13
- package/dist/internal-icons/icons/duo/WalletCoins.d.ts +0 -7
- package/dist/internal-icons/icons/duo/WalletCoins.js +0 -13
- package/dist/internal-icons/icons/duo/Weight.d.ts +0 -7
- package/dist/internal-icons/icons/duo/Weight.js +0 -13
|
@@ -7,7 +7,7 @@ const CaretDown = React.forwardRef(({ size, className, style, ...props }, ref) =
|
|
|
7
7
|
width: props.width || 18,
|
|
8
8
|
height: props.height || 18,
|
|
9
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: _jsx("path", {
|
|
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: _jsx("path", { fillOpacity: ".4", d: "M14.024 4H3.976a1.749 1.749 0 0 0-1.478 2.687l5.024 7.923A1.74 1.74 0 0 0 9 15.422c.603 0 1.155-.304 1.478-.812l5.025-7.924a1.749 1.749 0 0 0-1.478-2.687z", className: "nc-icon-wrapper", "data-color": "color-2" }) }));
|
|
11
11
|
});
|
|
12
12
|
CaretDown.displayName = 'CaretDown';
|
|
13
13
|
export default CaretDown;
|
|
@@ -7,7 +7,7 @@ const CaretLeft = React.forwardRef(({ size, className, style, ...props }, ref) =
|
|
|
7
7
|
width: props.width || 18,
|
|
8
8
|
height: props.height || 18,
|
|
9
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: _jsx("path", {
|
|
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: _jsx("path", { fillOpacity: ".4", d: "M13.094 2.442a1.75 1.75 0 0 0-1.781.055L3.389 7.522A1.74 1.74 0 0 0 2.577 9c0 .603.304 1.155.812 1.478l7.924 5.025a1.75 1.75 0 0 0 1.781.054A1.75 1.75 0 0 0 14 14.024V3.976a1.75 1.75 0 0 0-.906-1.534", className: "nc-icon-wrapper", "data-color": "color-2" }) }));
|
|
11
11
|
});
|
|
12
12
|
CaretLeft.displayName = 'CaretLeft';
|
|
13
13
|
export default CaretLeft;
|
|
@@ -7,7 +7,7 @@ const CaretRight = React.forwardRef(({ size, className, style, ...props }, ref)
|
|
|
7
7
|
width: props.width || 18,
|
|
8
8
|
height: props.height || 18,
|
|
9
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: _jsx("path", {
|
|
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: _jsx("path", { fillOpacity: ".4", d: "M14.611 7.522 6.687 2.497A1.75 1.75 0 0 0 4 3.975v10.049a1.749 1.749 0 0 0 2.688 1.478l7.923-5.024A1.74 1.74 0 0 0 15.423 9c0-.603-.304-1.155-.812-1.478", className: "nc-icon-wrapper", "data-color": "color-2" }) }));
|
|
11
11
|
});
|
|
12
12
|
CaretRight.displayName = 'CaretRight';
|
|
13
13
|
export default CaretRight;
|
|
@@ -7,7 +7,7 @@ const CaretUp = React.forwardRef(({ size, className, style, ...props }, ref) =>
|
|
|
7
7
|
width: props.width || 18,
|
|
8
8
|
height: props.height || 18,
|
|
9
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: _jsx("path", {
|
|
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: _jsx("path", { fillOpacity: ".4", d: "M10.478 3.389A1.74 1.74 0 0 0 9 2.577c-.603 0-1.155.304-1.478.812l-5.025 7.924A1.749 1.749 0 0 0 3.975 14h10.049a1.749 1.749 0 0 0 1.478-2.687z", className: "nc-icon-wrapper", "data-color": "color-2" }) }));
|
|
11
11
|
});
|
|
12
12
|
CaretUp.displayName = 'CaretUp';
|
|
13
13
|
export default CaretUp;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface CircleHalfDottedClockProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const CircleHalfDottedClock: React.ForwardRefExoticComponent<Omit<CircleHalfDottedClockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default CircleHalfDottedClock;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const CircleHalfDottedClock = 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", { fillRule: "evenodd", d: "M9 4a.75.75 0 0 1 .75.75v3.857l2.927 2.026a.75.75 0 1 1-.854 1.234l-3.25-2.25A.75.75 0 0 1 8.25 9V4.75A.75.75 0 0 1 9 4", clipRule: "evenodd" }), _jsx("path", { fillOpacity: ".4", fillRule: "evenodd", d: "M8.25 1.75A.75.75 0 0 1 9 1a8 8 0 0 1 0 16 .75.75 0 0 1 0-1.5 6.5 6.5 0 0 0 0-13 .75.75 0 0 1-.75-.75", clipRule: "evenodd", "data-color": "color-2" }), _jsx("path", { fillOpacity: ".4", d: "M3.873 14.877a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M1.75 9.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5m2.123-5.127a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5m2.353 11.825a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5m-3.924-3.924a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5m0-5.548a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5m3.924-3.924a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5", "data-color": "color-2" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
CircleHalfDottedClock.displayName = 'CircleHalfDottedClock';
|
|
13
|
+
export default CircleHalfDottedClock;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { SVGProps } from 'react';
|
|
3
|
-
export interface
|
|
3
|
+
export interface ClockProps extends SVGProps<SVGSVGElement> {
|
|
4
4
|
size?: number | string;
|
|
5
5
|
}
|
|
6
|
-
declare const
|
|
7
|
-
export default
|
|
6
|
+
declare const Clock: React.ForwardRefExoticComponent<Omit<ClockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Clock;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Clock = 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", { fillRule: "evenodd", className: "nc-icon-wrapper", clipRule: "evenodd", children: [_jsx("path", { fillOpacity: ".4", d: "M1 9a8 8 0 1 1 16 0A8 8 0 0 1 1 9", "data-color": "color-2" }), _jsx("path", { d: "M9 4a.75.75 0 0 1 .75.75v3.857l2.927 2.026a.75.75 0 1 1-.854 1.234l-3.25-2.25A.75.75 0 0 1 8.25 9V4.75A.75.75 0 0 1 9 4" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Clock.displayName = 'Clock';
|
|
13
|
+
export default Clock;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface HistoryProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const History: React.ForwardRefExoticComponent<Omit<HistoryProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default History;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const History = 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 4a.75.75 0 0 0-.75.75V9c0 .246.121.477.323.617l3.25 2.25a.747.747 0 0 0 1.043-.19.75.75 0 0 0-.19-1.043L9.749 8.608V4.751a.75.75 0 0 0-.75-.75z" }), _jsx("path", { d: "M9 1a7.98 7.98 0 0 0-6.261 3.037l-.116-.835a.75.75 0 0 0-1.486.206l.408 2.945a.75.75 0 0 0 .846.64l2.944-.406a.75.75 0 0 0-.205-1.486l-1.457.2A6.48 6.48 0 0 1 9 2.502c3.584 0 6.5 2.915 6.5 6.5s-2.916 6.5-6.5 6.5a6.463 6.463 0 0 1-6.497-6.32.74.74 0 0 0-.77-.728.75.75 0 0 0-.73.77A7.956 7.956 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
|
+
History.displayName = 'History';
|
|
13
|
+
export default History;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { SVGProps } from 'react';
|
|
3
|
-
export interface
|
|
3
|
+
export interface LockProps extends SVGProps<SVGSVGElement> {
|
|
4
4
|
size?: number | string;
|
|
5
5
|
}
|
|
6
|
-
declare const
|
|
7
|
-
export default
|
|
6
|
+
declare const Lock: React.ForwardRefExoticComponent<Omit<LockProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Lock;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Lock = 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", { fillOpacity: ".4", fillRule: "evenodd", d: "M2.5 10.25A2.75 2.75 0 0 1 5.25 7.5h7.5a2.75 2.75 0 0 1 2.75 2.75v4A2.75 2.75 0 0 1 12.75 17h-7.5a2.75 2.75 0 0 1-2.75-2.75z", clipRule: "evenodd", "data-color": "color-2" }), _jsx("path", { fillRule: "evenodd", d: "M9 11a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1A.75.75 0 0 1 9 11", clipRule: "evenodd" }), _jsx("path", { d: "M6.5 5a2.5 2.5 0 1 1 5 0v2.5h1.25q.126 0 .25.011V5a4 4 0 1 0-8 0v2.511q.123-.1.25-.011H6.5z" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Lock.displayName = 'Lock';
|
|
13
|
+
export default Lock;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface LockOpenProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const LockOpen: React.ForwardRefExoticComponent<Omit<LockOpenProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default LockOpen;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const LockOpen = 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", { fillOpacity: ".4", fillRule: "evenodd", d: "M3 10.25A2.75 2.75 0 0 1 5.75 7.5h7.5A2.75 2.75 0 0 1 16 10.25v4A2.75 2.75 0 0 1 13.25 17h-7.5A2.75 2.75 0 0 1 3 14.25z", clipRule: "evenodd", "data-color": "color-2" }), _jsx("path", { fillRule: "evenodd", d: "M9.5 11a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1A.75.75 0 0 1 9.5 11", clipRule: "evenodd" }), _jsx("path", { d: "M4 1a4 4 0 0 0-4 4v1.25a.75.75 0 0 0 1.5 0V5a2.5 2.5 0 1 1 5 0v2.5H8V5a4 4 0 0 0-4-4" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
LockOpen.displayName = 'LockOpen';
|
|
13
|
+
export default LockOpen;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface MagnifierProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Magnifier: React.ForwardRefExoticComponent<Omit<MagnifierProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Magnifier;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Magnifier = 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", { stroke: "#f7f7f7", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", className: "nc-icon-wrapper", children: [_jsx("path", { fillOpacity: ".3", stroke: "none", d: "M7.25 12.25a5 5 0 1 0 0-10 5 5 0 0 0 0 10", "data-color": "color-2", "data-stroke": "none" }), _jsx("path", { d: "m15.75 15.75-2.847-2.847M7.25 12.25a5 5 0 1 0 0-10 5 5 0 0 0 0 10" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Magnifier.displayName = 'Magnifier';
|
|
13
|
+
export default Magnifier;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { SVGProps } from 'react';
|
|
3
|
-
export interface
|
|
3
|
+
export interface MinusProps extends SVGProps<SVGSVGElement> {
|
|
4
4
|
size?: number | string;
|
|
5
5
|
}
|
|
6
|
-
declare const
|
|
7
|
-
export default
|
|
6
|
+
declare const Minus: React.ForwardRefExoticComponent<Omit<MinusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Minus;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import React from 'react';
|
|
3
|
-
const
|
|
3
|
+
const Minus = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
4
|
const dimensions = size
|
|
5
5
|
? { width: size, height: size }
|
|
6
6
|
: {
|
|
7
7
|
width: props.width || 18,
|
|
8
8
|
height: props.height || 18,
|
|
9
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: _jsx("
|
|
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: _jsx("path", { d: "M14.75 9.75H3.25a.75.75 0 0 1 0-1.5h11.5a.75.75 0 0 1 0 1.5", className: "nc-icon-wrapper" }) }));
|
|
11
11
|
});
|
|
12
|
-
|
|
13
|
-
export default
|
|
12
|
+
Minus.displayName = 'Minus';
|
|
13
|
+
export default Minus;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { SVGProps } from 'react';
|
|
3
|
-
export interface
|
|
3
|
+
export interface PlusProps extends SVGProps<SVGSVGElement> {
|
|
4
4
|
size?: number | string;
|
|
5
5
|
}
|
|
6
|
-
declare const
|
|
7
|
-
export default
|
|
6
|
+
declare const Plus: React.ForwardRefExoticComponent<Omit<PlusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Plus;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import React from 'react';
|
|
3
|
-
const
|
|
3
|
+
const Plus = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
4
|
const dimensions = size
|
|
5
5
|
? { width: size, height: size }
|
|
6
6
|
: {
|
|
7
7
|
width: props.width || 18,
|
|
8
8
|
height: props.height || 18,
|
|
9
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.
|
|
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 9.75H3.25a.75.75 0 0 1 0-1.5h11.5a.75.75 0 0 1 0 1.5", "data-color": "color-2" }), _jsx("path", { d: "M9 15.5a.75.75 0 0 1-.75-.75V3.25a.75.75 0 0 1 1.5 0v11.5a.75.75 0 0 1-.75.75" })] }) }));
|
|
11
11
|
});
|
|
12
|
-
|
|
13
|
-
export default
|
|
12
|
+
Plus.displayName = 'Plus';
|
|
13
|
+
export default Plus;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface QuickstartProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
declare const Quickstart: React.ForwardRefExoticComponent<Omit<QuickstartProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Quickstart;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Quickstart = 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", { fillRule: "evenodd", d: "M13.72 2.22a.75.75 0 0 1 1.06 0l2 2a.75.75 0 0 1-1.06 1.06l-2-2a.75.75 0 0 1 0-1.06", clipRule: "evenodd" }), _jsx("path", { d: "M6.75.5a.75.75 0 0 0 0 1.5h1.5v1.04a7 7 0 0 1 1.5 0V2h1.5a.75.75 0 0 0 0-1.5z" }), _jsx("path", { fillOpacity: ".4", d: "M2.07 9A7.001 7.001 0 0 1 16 10a7 7 0 0 1-13.064 3.5H2.25a.75.75 0 0 1 0-1.5h2a.75.75 0 0 0 0-1.5H.75a.75.75 0 0 1 0-1.5z", "data-color": "color-2" }), _jsx("path", { fillRule: "evenodd", d: "M11.78 7.22a.75.75 0 0 1 0 1.06l-2.25 2.25a.75.75 0 1 1-1.06-1.06l2.25-2.25a.75.75 0 0 1 1.06 0", clipRule: "evenodd" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Quickstart.displayName = 'Quickstart';
|
|
13
|
+
export default Quickstart;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { SVGProps } from 'react';
|
|
3
|
-
export interface
|
|
3
|
+
export interface XmarkProps extends SVGProps<SVGSVGElement> {
|
|
4
4
|
size?: number | string;
|
|
5
5
|
}
|
|
6
|
-
declare const
|
|
7
|
-
export default
|
|
6
|
+
declare const Xmark: React.ForwardRefExoticComponent<Omit<XmarkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default Xmark;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
const Xmark = 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", { stroke: "#f7f7f7", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", className: "nc-icon-wrapper", children: [_jsx("path", { d: "M14 4 4 14", "data-color": "color-2" }), _jsx("path", { d: "m4 4 10 10" })] }) }));
|
|
11
|
+
});
|
|
12
|
+
Xmark.displayName = 'Xmark';
|
|
13
|
+
export default Xmark;
|
|
@@ -3,246 +3,40 @@
|
|
|
3
3
|
* Generated by svger-cli
|
|
4
4
|
*
|
|
5
5
|
* Import individual components:
|
|
6
|
-
* import {
|
|
6
|
+
* import { ArrowDown } from './components';
|
|
7
7
|
*
|
|
8
8
|
* Import all components:
|
|
9
9
|
* import * as Icons from './components';
|
|
10
10
|
*/
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as
|
|
13
|
-
export { default as
|
|
14
|
-
export { default as
|
|
15
|
-
export { default as
|
|
16
|
-
export { default as
|
|
17
|
-
export { default as
|
|
18
|
-
export { default as
|
|
19
|
-
export { default as
|
|
20
|
-
export { default as
|
|
21
|
-
export { default as
|
|
22
|
-
export { default as
|
|
23
|
-
export { default as
|
|
24
|
-
export { default as
|
|
25
|
-
export { default as
|
|
26
|
-
export { default as
|
|
27
|
-
export { default as
|
|
28
|
-
export { default as
|
|
29
|
-
export { default as
|
|
30
|
-
export { default as
|
|
31
|
-
export { default as
|
|
32
|
-
export { default as
|
|
33
|
-
export { default as
|
|
34
|
-
export { default as
|
|
35
|
-
export { default as
|
|
36
|
-
export { default as
|
|
37
|
-
export { default as
|
|
38
|
-
export { default as
|
|
39
|
-
export { default as
|
|
40
|
-
export { default as
|
|
41
|
-
export { default as
|
|
42
|
-
export { default as
|
|
43
|
-
export { default as CaretRight } from './CaretRight.js';
|
|
44
|
-
export { default as CaretUp } from './CaretUp.js';
|
|
45
|
-
export { default as Chart3 } from './Chart3.js';
|
|
46
|
-
export { default as ChartBar } from './ChartBar.js';
|
|
47
|
-
export { default as ChartCandlestick2 } from './ChartCandlestick2.js';
|
|
48
|
-
export { default as ChatImage } from './ChatImage.js';
|
|
49
|
-
export { default as ChatInfo } from './ChatInfo.js';
|
|
50
|
-
export { default as ChatTask } from './ChatTask.js';
|
|
51
|
-
export { default as Check } from './Check.js';
|
|
52
|
-
export { default as CheckBoxArrow } from './CheckBoxArrow.js';
|
|
53
|
-
export { default as ChevronDown } from './ChevronDown.js';
|
|
54
|
-
export { default as ChevronExpandY } from './ChevronExpandY.js';
|
|
55
|
-
export { default as ChevronLeft } from './ChevronLeft.js';
|
|
56
|
-
export { default as ChevronLeftToLine } from './ChevronLeftToLine.js';
|
|
57
|
-
export { default as ChevronRight } from './ChevronRight.js';
|
|
58
|
-
export { default as ChevronRightToLine } from './ChevronRightToLine.js';
|
|
59
|
-
export { default as ChevronUp } from './ChevronUp.js';
|
|
60
|
-
export { default as Child } from './Child.js';
|
|
61
|
-
export { default as CircleCoinIn } from './CircleCoinIn.js';
|
|
62
|
-
export { default as CircleCoinOut } from './CircleCoinOut.js';
|
|
63
|
-
export { default as CircleCoinPlus } from './CircleCoinPlus.js';
|
|
64
|
-
export { default as CircleConversion } from './CircleConversion.js';
|
|
65
|
-
export { default as CircleCross } from './CircleCross.js';
|
|
66
|
-
export { default as CircleHalfArrowDown } from './CircleHalfArrowDown.js';
|
|
67
|
-
export { default as CircleHalfArrowLeft } from './CircleHalfArrowLeft.js';
|
|
68
|
-
export { default as CircleHalfArrowRight } from './CircleHalfArrowRight.js';
|
|
69
|
-
export { default as CircleHalfArrowUp } from './CircleHalfArrowUp.js';
|
|
70
|
-
export { default as CircleHalfDottedChart2 } from './CircleHalfDottedChart2.js';
|
|
71
|
-
export { default as ClockTime } from './ClockTime.js';
|
|
72
|
-
export { default as CloneDashed3 } from './CloneDashed3.js';
|
|
73
|
-
export { default as CloneImageDashed } from './CloneImageDashed.js';
|
|
74
|
-
export { default as CloneVideoDashed } from './CloneVideoDashed.js';
|
|
75
|
-
export { default as CloudeCode } from './CloudeCode.js';
|
|
76
|
-
export { default as CoinStack } from './CoinStack.js';
|
|
77
|
-
export { default as ConditionalLogic } from './ConditionalLogic.js';
|
|
78
|
-
export { default as ConnectPlus } from './ConnectPlus.js';
|
|
79
|
-
export { default as Connection3 } from './Connection3.js';
|
|
80
|
-
export { default as CopyDelete } from './CopyDelete.js';
|
|
81
|
-
export { default as CopyId } from './CopyId.js';
|
|
82
|
-
export { default as DarkLight } from './DarkLight.js';
|
|
83
|
-
export { default as Deaf } from './Deaf.js';
|
|
84
|
-
export { default as DependencyLink } from './DependencyLink.js';
|
|
85
|
-
export { default as DesktopDock } from './DesktopDock.js';
|
|
86
|
-
export { default as DiamondSparkle } from './DiamondSparkle.js';
|
|
87
|
-
export { default as DocumentScan } from './DocumentScan.js';
|
|
88
|
-
export { default as Dog2 } from './Dog2.js';
|
|
89
|
-
export { default as DogLeash } from './DogLeash.js';
|
|
90
|
-
export { default as DogSlash } from './DogSlash.js';
|
|
91
|
-
export { default as DotFormation } from './DotFormation.js';
|
|
92
|
-
export { default as DrawFinger } from './DrawFinger.js';
|
|
93
|
-
export { default as Ear } from './Ear.js';
|
|
94
|
-
export { default as EarSound } from './EarSound.js';
|
|
95
|
-
export { default as Embed } from './Embed.js';
|
|
96
|
-
export { default as EnterDoor } from './EnterDoor.js';
|
|
97
|
-
export { default as EnterHome } from './EnterHome.js';
|
|
98
|
-
export { default as ExitDoor } from './ExitDoor.js';
|
|
99
|
-
export { default as Export2 } from './Export2.js';
|
|
100
|
-
export { default as EyeSparkle } from './EyeSparkle.js';
|
|
101
|
-
export { default as FaceRobot } from './FaceRobot.js';
|
|
102
|
-
export { default as FaceRobot2 } from './FaceRobot2.js';
|
|
103
|
-
export { default as FaceRobot3 } from './FaceRobot3.js';
|
|
104
|
-
export { default as FerrisWheel } from './FerrisWheel.js';
|
|
105
|
-
export { default as FileExport } from './FileExport.js';
|
|
106
|
-
export { default as FlagMenu } from './FlagMenu.js';
|
|
107
|
-
export { default as FocusCenter } from './FocusCenter.js';
|
|
108
|
-
export { default as FoodOrder } from './FoodOrder.js';
|
|
109
|
-
export { default as FuelCan } from './FuelCan.js';
|
|
110
|
-
export { default as FuelCan2 } from './FuelCan2.js';
|
|
111
|
-
export { default as Gear3Sparkle } from './Gear3Sparkle.js';
|
|
112
|
-
export { default as GridSparkle } from './GridSparkle.js';
|
|
113
|
-
export { default as HandHoldingGlobe } from './HandHoldingGlobe.js';
|
|
114
|
-
export { default as Handshake2 } from './Handshake2.js';
|
|
115
|
-
export { default as Haptic } from './Haptic.js';
|
|
116
|
-
export { default as HelpChat } from './HelpChat.js';
|
|
117
|
-
export { default as HexagonSparkle } from './HexagonSparkle.js';
|
|
118
|
-
export { default as Hiking } from './Hiking.js';
|
|
119
|
-
export { default as History2 } from './History2.js';
|
|
120
|
-
export { default as HorseHead } from './HorseHead.js';
|
|
121
|
-
export { default as HouseDollarSign } from './HouseDollarSign.js';
|
|
122
|
-
export { default as HouseMinus2 } from './HouseMinus2.js';
|
|
123
|
-
export { default as Images3 } from './Images3.js';
|
|
124
|
-
export { default as Img4k } from './Img4k.js';
|
|
125
|
-
export { default as InsertCrypto } from './InsertCrypto.js';
|
|
126
|
-
export { default as InsertDollar } from './InsertDollar.js';
|
|
127
|
-
export { default as InstantMoney } from './InstantMoney.js';
|
|
128
|
-
export { default as InvoiceIn } from './InvoiceIn.js';
|
|
129
|
-
export { default as InwardFlow } from './InwardFlow.js';
|
|
130
|
-
export { default as JoinedHands } from './JoinedHands.js';
|
|
131
|
-
export { default as LawShield } from './LawShield.js';
|
|
132
|
-
export { default as Lectern } from './Lectern.js';
|
|
133
|
-
export { default as Lectern2 } from './Lectern2.js';
|
|
134
|
-
export { default as LightSpark } from './LightSpark.js';
|
|
135
|
-
export { default as LightSpark2 } from './LightSpark2.js';
|
|
136
|
-
export { default as ListExport } from './ListExport.js';
|
|
137
|
-
export { default as ListFavs3 } from './ListFavs3.js';
|
|
138
|
-
export { default as ListFavs4 } from './ListFavs4.js';
|
|
139
|
-
export { default as LoadingStatus } from './LoadingStatus.js';
|
|
140
|
-
export { default as LoadingStatus2 } from './LoadingStatus2.js';
|
|
141
|
-
export { default as LockedChat } from './LockedChat.js';
|
|
142
|
-
export { default as MagicHat } from './MagicHat.js';
|
|
143
|
-
export { default as MagicRabbit } from './MagicRabbit.js';
|
|
144
|
-
export { default as MagnifierSparkle2 } from './MagnifierSparkle2.js';
|
|
145
|
-
export { default as MediaLibrary2 } from './MediaLibrary2.js';
|
|
146
|
-
export { default as Membership } from './Membership.js';
|
|
147
|
-
export { default as Menu4 } from './Menu4.js';
|
|
148
|
-
export { default as MilitaryMedal } from './MilitaryMedal.js';
|
|
149
|
-
export { default as MobileCircuit } from './MobileCircuit.js';
|
|
150
|
-
export { default as MoneyRefund } from './MoneyRefund.js';
|
|
151
|
-
export { default as MoneyRefund2 } from './MoneyRefund2.js';
|
|
152
|
-
export { default as MoonStars } from './MoonStars.js';
|
|
153
|
-
export { default as MotionAlongPath } from './MotionAlongPath.js';
|
|
154
|
-
export { default as Msgs2 } from './Msgs2.js';
|
|
155
|
-
export { default as Navigation } from './Navigation.js';
|
|
156
|
-
export { default as NavigationHorizontal } from './NavigationHorizontal.js';
|
|
157
|
-
export { default as NavigationVertical } from './NavigationVertical.js';
|
|
158
|
-
export { default as ObjectSelection } from './ObjectSelection.js';
|
|
159
|
-
export { default as OfficeUser } from './OfficeUser.js';
|
|
160
|
-
export { default as OpenExternal } from './OpenExternal.js';
|
|
161
|
-
export { default as OrbitSparkle } from './OrbitSparkle.js';
|
|
162
|
-
export { default as OutwardFlow } from './OutwardFlow.js';
|
|
163
|
-
export { default as PaperPlaneFast } from './PaperPlaneFast.js';
|
|
164
|
-
export { default as Parachute } from './Parachute.js';
|
|
165
|
-
export { default as Paw } from './Paw.js';
|
|
166
|
-
export { default as Peace } from './Peace.js';
|
|
167
|
-
export { default as PicnicTable } from './PicnicTable.js';
|
|
168
|
-
export { default as Pillow } from './Pillow.js';
|
|
169
|
-
export { default as Playground } from './Playground.js';
|
|
170
|
-
export { default as Playlist4 } from './Playlist4.js';
|
|
171
|
-
export { default as Plug3 } from './Plug3.js';
|
|
172
|
-
export { default as Plug3Sparkle } from './Plug3Sparkle.js';
|
|
173
|
-
export { default as PlugOff } from './PlugOff.js';
|
|
174
|
-
export { default as PlugSparkle } from './PlugSparkle.js';
|
|
175
|
-
export { default as PopEffect } from './PopEffect.js';
|
|
176
|
-
export { default as ProfileAnalytics } from './ProfileAnalytics.js';
|
|
177
|
-
export { default as ProfileBasic } from './ProfileBasic.js';
|
|
178
|
-
export { default as ProgressIndicator2 } from './ProgressIndicator2.js';
|
|
179
|
-
export { default as QuickActions } from './QuickActions.js';
|
|
180
|
-
export { default as QuickTimer } from './QuickTimer.js';
|
|
181
|
-
export { default as Rabbit } from './Rabbit.js';
|
|
182
|
-
export { default as Receipt3 } from './Receipt3.js';
|
|
183
|
-
export { default as Receipt4 } from './Receipt4.js';
|
|
184
|
-
export { default as Redo2 } from './Redo2.js';
|
|
185
|
-
export { default as Redo3 } from './Redo3.js';
|
|
186
|
-
export { default as Refresh3AnticlockwiseSlash } from './Refresh3AnticlockwiseSlash.js';
|
|
187
|
-
export { default as Refresh3ClockwiseSlash } from './Refresh3ClockwiseSlash.js';
|
|
188
|
-
export { default as RefreshAnticlockwise } from './RefreshAnticlockwise.js';
|
|
189
|
-
export { default as RefreshAnticlockwiseSlash } from './RefreshAnticlockwiseSlash.js';
|
|
190
|
-
export { default as RefreshClockwiseSlash } from './RefreshClockwiseSlash.js';
|
|
191
|
-
export { default as Refrigerator } from './Refrigerator.js';
|
|
192
|
-
export { default as RemoteControl } from './RemoteControl.js';
|
|
193
|
-
export { default as RemoteControl2 } from './RemoteControl2.js';
|
|
194
|
-
export { default as ReportFile } from './ReportFile.js';
|
|
195
|
-
export { default as Reposition } from './Reposition.js';
|
|
196
|
-
export { default as Rerouting } from './Rerouting.js';
|
|
197
|
-
export { default as Robot2 } from './Robot2.js';
|
|
198
|
-
export { default as Robot3 } from './Robot3.js';
|
|
199
|
-
export { default as Robot4 } from './Robot4.js';
|
|
200
|
-
export { default as RockOn } from './RockOn.js';
|
|
201
|
-
export { default as RopeStanchions } from './RopeStanchions.js';
|
|
202
|
-
export { default as Rotation3602 } from './Rotation3602.js';
|
|
203
|
-
export { default as SavedItems2 } from './SavedItems2.js';
|
|
204
|
-
export { default as ScaleImg4k } from './ScaleImg4k.js';
|
|
205
|
-
export { default as ScanImage } from './ScanImage.js';
|
|
206
|
-
export { default as ScissorsSparkle } from './ScissorsSparkle.js';
|
|
207
|
-
export { default as Seatbelt } from './Seatbelt.js';
|
|
208
|
-
export { default as ShakaHand } from './ShakaHand.js';
|
|
209
|
-
export { default as ShapeRectangle } from './ShapeRectangle.js';
|
|
210
|
-
export { default as Shovel } from './Shovel.js';
|
|
211
|
-
export { default as ShuffleSparkle } from './ShuffleSparkle.js';
|
|
212
|
-
export { default as SideProfileQuestion } from './SideProfileQuestion.js';
|
|
213
|
-
export { default as SideProfileSparkle } from './SideProfileSparkle.js';
|
|
214
|
-
export { default as SidebarEdit } from './SidebarEdit.js';
|
|
215
|
-
export { default as SlashCircle } from './SlashCircle.js';
|
|
216
|
-
export { default as Sliders4 } from './Sliders4.js';
|
|
217
|
-
export { default as Snail } from './Snail.js';
|
|
218
|
-
export { default as Spiral } from './Spiral.js';
|
|
219
|
-
export { default as SplitView } from './SplitView.js';
|
|
220
|
-
export { default as SquareDashedSearchSparkle } from './SquareDashedSearchSparkle.js';
|
|
221
|
-
export { default as SquareDashedText } from './SquareDashedText.js';
|
|
222
|
-
export { default as SquarePath } from './SquarePath.js';
|
|
223
|
-
export { default as Star2Slash } from './Star2Slash.js';
|
|
224
|
-
export { default as StopSign } from './StopSign.js';
|
|
225
|
-
export { default as StopwatchBolt } from './StopwatchBolt.js';
|
|
226
|
-
export { default as SummitFlag } from './SummitFlag.js';
|
|
227
|
-
export { default as Sun } from './Sun.js';
|
|
228
|
-
export { default as Sunrise2 } from './Sunrise2.js';
|
|
229
|
-
export { default as Task } from './Task.js';
|
|
230
|
-
export { default as Task2 } from './Task2.js';
|
|
231
|
-
export { default as TaskDebug } from './TaskDebug.js';
|
|
232
|
-
export { default as TaskSearch } from './TaskSearch.js';
|
|
233
|
-
export { default as Teepee } from './Teepee.js';
|
|
234
|
-
export { default as TextAdjust } from './TextAdjust.js';
|
|
235
|
-
export { default as TheatreMask } from './TheatreMask.js';
|
|
236
|
-
export { default as TheatreMask2 } from './TheatreMask2.js';
|
|
237
|
-
export { default as TimerProgress } from './TimerProgress.js';
|
|
238
|
-
export { default as TimerProgress2 } from './TimerProgress2.js';
|
|
239
|
-
export { default as TransactionSplit } from './TransactionSplit.js';
|
|
240
|
-
export { default as Undo2 } from './Undo2.js';
|
|
241
|
-
export { default as Undo3 } from './Undo3.js';
|
|
242
|
-
export { default as UnicornHead } from './UnicornHead.js';
|
|
243
|
-
export { default as UserContact } from './UserContact.js';
|
|
244
|
-
export { default as UserVoice2 } from './UserVoice2.js';
|
|
245
|
-
export { default as VipBadge } from './VipBadge.js';
|
|
246
|
-
export { default as VoiceCaption } from './VoiceCaption.js';
|
|
247
|
-
export { default as WalletCoins } from './WalletCoins.js';
|
|
248
|
-
export { default as Weight } from './Weight.js';
|
|
11
|
+
export { default as ArrowDown } from './ArrowDown';
|
|
12
|
+
export { default as ArrowDownLeft } from './ArrowDownLeft';
|
|
13
|
+
export { default as ArrowDownRight } from './ArrowDownRight';
|
|
14
|
+
export { default as ArrowLeft } from './ArrowLeft';
|
|
15
|
+
export { default as ArrowRight } from './ArrowRight';
|
|
16
|
+
export { default as ArrowUp } from './ArrowUp';
|
|
17
|
+
export { default as ArrowUpLeft } from './ArrowUpLeft';
|
|
18
|
+
export { default as ArrowUpRight } from './ArrowUpRight';
|
|
19
|
+
export { default as CaretDown } from './CaretDown';
|
|
20
|
+
export { default as CaretLeft } from './CaretLeft';
|
|
21
|
+
export { default as CaretRight } from './CaretRight';
|
|
22
|
+
export { default as CaretUp } from './CaretUp';
|
|
23
|
+
export { default as Check } from './Check';
|
|
24
|
+
export { default as ChevronDown } from './ChevronDown';
|
|
25
|
+
export { default as ChevronExpandY } from './ChevronExpandY';
|
|
26
|
+
export { default as ChevronLeft } from './ChevronLeft';
|
|
27
|
+
export { default as ChevronRight } from './ChevronRight';
|
|
28
|
+
export { default as ChevronUp } from './ChevronUp';
|
|
29
|
+
export { default as CircleHalfDottedClock } from './CircleHalfDottedClock';
|
|
30
|
+
export { default as Clock } from './Clock';
|
|
31
|
+
export { default as DarkLight } from './DarkLight';
|
|
32
|
+
export { default as History } from './History';
|
|
33
|
+
export { default as Lock } from './Lock';
|
|
34
|
+
export { default as LockOpen } from './LockOpen';
|
|
35
|
+
export { default as Magnifier } from './Magnifier';
|
|
36
|
+
export { default as Minus } from './Minus';
|
|
37
|
+
export { default as MoonStars } from './MoonStars';
|
|
38
|
+
export { default as Plus } from './Plus';
|
|
39
|
+
export { default as Quickstart } from './Quickstart';
|
|
40
|
+
export { default as RefreshAnticlockwise } from './RefreshAnticlockwise';
|
|
41
|
+
export { default as Sun } from './Sun';
|
|
42
|
+
export { default as Xmark } from './Xmark';
|