@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
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
//#region src/core/props/intrinsic-vira-props.ts
|
|
2
|
+
var extractIntrinsicViraProps = (props) => {
|
|
3
|
+
const { grow, shrink, ...componentProps } = props;
|
|
4
|
+
return {
|
|
5
|
+
componentProps,
|
|
6
|
+
intrinsicAttributes: {
|
|
7
|
+
...grow === false ? { "data-grow": "false" } : {},
|
|
8
|
+
...shrink === false ? { "data-shrink": "false" } : {}
|
|
9
|
+
}
|
|
10
|
+
};
|
|
10
11
|
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { extractIntrinsicViraProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { ThemeTypes } from '@viraui/foundation/vira/types';
|
|
2
2
|
import type * as React from 'react';
|
|
3
3
|
type AxisPadding = ThemeTypes['space'] | [ThemeTypes['space'] | 0, ThemeTypes['space'] | 0];
|
|
4
4
|
export declare const resolveAxisPadding: (value: AxisPadding | undefined, startKey: string, endKey: string) => React.CSSProperties;
|
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
import { resolveThemeValue } from
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
[startKey]: resolvedValue,
|
|
15
|
-
[endKey]: resolvedValue,
|
|
16
|
-
};
|
|
1
|
+
import { resolveThemeValue } from "../theme/resolve-theme-value.js";
|
|
2
|
+
//#region src/core/styles/resolve-axis-padding.ts
|
|
3
|
+
var resolveAxisPadding = (value, startKey, endKey) => {
|
|
4
|
+
if (!value) return {};
|
|
5
|
+
if (Array.isArray(value)) return {
|
|
6
|
+
[startKey]: resolveThemeValue(value[0], "space", 0),
|
|
7
|
+
[endKey]: resolveThemeValue(value[1], "space", 0)
|
|
8
|
+
};
|
|
9
|
+
const resolvedValue = resolveThemeValue(value, "space", 0);
|
|
10
|
+
return {
|
|
11
|
+
[startKey]: resolvedValue,
|
|
12
|
+
[endKey]: resolvedValue
|
|
13
|
+
};
|
|
17
14
|
};
|
|
15
|
+
//#endregion
|
|
16
|
+
export { resolveAxisPadding };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import theme from '@viraui/foundation/vira/nested';
|
|
1
|
+
import { default as theme } from '@viraui/foundation/vira/nested';
|
|
2
2
|
type ThemeTree = typeof theme;
|
|
3
3
|
type ThemeKey = keyof ThemeTree;
|
|
4
4
|
export declare const resolveThemeValue: <TKey extends ThemeKey, TValue extends keyof ThemeTree[TKey], TFallback>(key: TValue | null | undefined | 0, themeKey: TKey, fallbackValue: TFallback) => ThemeTree[TKey][TValue] | TFallback;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import theme from
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
return theme[themeKey][key];
|
|
1
|
+
import theme from "@viraui/foundation/vira/nested";
|
|
2
|
+
//#region src/core/theme/resolve-theme-value.ts
|
|
3
|
+
var resolveThemeValue = (key, themeKey, fallbackValue) => {
|
|
4
|
+
if (!key) return fallbackValue;
|
|
5
|
+
return theme[themeKey][key];
|
|
7
6
|
};
|
|
7
|
+
//#endregion
|
|
8
|
+
export { resolveThemeValue };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './components
|
|
2
|
-
export type { IntrinsicViraProps } from './core/props/intrinsic-vira-props
|
|
1
|
+
export * from './components';
|
|
2
|
+
export type { IntrinsicViraProps } from './core/props/intrinsic-vira-props';
|
package/dist/index.js
CHANGED
|
@@ -1 +1,24 @@
|
|
|
1
|
-
|
|
1
|
+
import { Avatar } from "./components/avatar/avatar.js";
|
|
2
|
+
import { ClampText } from "./components/clamp-text/clamp-text.js";
|
|
3
|
+
import { ELEVATION_DEFAULTS } from "./core/elevation/elevation-types.js";
|
|
4
|
+
import { getElevationProps } from "./core/elevation/get-elevation-props.js";
|
|
5
|
+
import { Elevator } from "./components/elevator/elevator.js";
|
|
6
|
+
import { Spinner } from "./components/spinner/spinner.js";
|
|
7
|
+
import { Button } from "./components/button/button.js";
|
|
8
|
+
import { IconButton } from "./components/icon-button/icon-button.js";
|
|
9
|
+
import { Text } from "./components/text/text.js";
|
|
10
|
+
import { Stack } from "./components/stack/stack.js";
|
|
11
|
+
import { LinearProgress } from "./components/linear-progress/linear-progress.js";
|
|
12
|
+
import { Textfield } from "./components/textfield/textfield.js";
|
|
13
|
+
import { Textarea } from "./components/textarea/textarea.js";
|
|
14
|
+
import { Slider } from "./components/slider/slider.js";
|
|
15
|
+
import { Switch } from "./components/switch/switch.js";
|
|
16
|
+
import { Checkbox } from "./components/checkbox/checkbox.js";
|
|
17
|
+
import { Radio } from "./components/radio/radio.js";
|
|
18
|
+
import { RadioGroup } from "./components/radio/radio-group.js";
|
|
19
|
+
import { Icon } from "./components/icon/icon.js";
|
|
20
|
+
import { Select } from "./components/select/select.js";
|
|
21
|
+
import { Skeleton } from "./components/skeleton/skeleton.js";
|
|
22
|
+
import { Surface } from "./components/surface/surface.js";
|
|
23
|
+
import { Title } from "./components/title/title.js";
|
|
24
|
+
export { Avatar, Button, Checkbox, ClampText, ELEVATION_DEFAULTS, Elevator, Icon, IconButton, LinearProgress, Radio, RadioGroup, Select, Skeleton, Slider, Spinner, Stack, Surface, Switch, Text, Textarea, Textfield, Title, getElevationProps };
|
|
@@ -2,250 +2,44 @@ import type { ComponentType, SVGProps } from 'react';
|
|
|
2
2
|
export type GeneratedIconComponent = ComponentType<SVGProps<SVGSVGElement> & {
|
|
3
3
|
size?: number | string;
|
|
4
4
|
}>;
|
|
5
|
-
export declare const generatedIconNames: readonly ["
|
|
5
|
+
export declare const generatedIconNames: readonly ["ArrowDown", "ArrowDownLeft", "ArrowDownRight", "ArrowLeft", "ArrowRight", "ArrowUp", "ArrowUpLeft", "ArrowUpRight", "CaretDown", "CaretLeft", "CaretRight", "CaretUp", "Check", "ChevronDown", "ChevronExpandY", "ChevronLeft", "ChevronRight", "ChevronUp", "CircleHalfDottedClock", "Clock", "DarkLight", "History", "Lock", "LockOpen", "Magnifier", "Minus", "MoonStars", "Plus", "Quickstart", "RefreshAnticlockwise", "Sun", "Xmark"];
|
|
6
6
|
export type GeneratedIconName = (typeof generatedIconNames)[number];
|
|
7
7
|
export declare const generatedIconVariants: readonly ["duo"];
|
|
8
8
|
export type GeneratedIconVariant = (typeof generatedIconVariants)[number];
|
|
9
9
|
export declare const generatedIconRegistry: {
|
|
10
10
|
readonly duo: {
|
|
11
|
-
readonly
|
|
12
|
-
readonly
|
|
13
|
-
readonly
|
|
14
|
-
readonly
|
|
15
|
-
readonly
|
|
16
|
-
readonly
|
|
17
|
-
readonly
|
|
18
|
-
readonly
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
21
|
-
readonly
|
|
22
|
-
readonly
|
|
23
|
-
readonly
|
|
24
|
-
readonly
|
|
25
|
-
readonly
|
|
26
|
-
readonly
|
|
27
|
-
readonly
|
|
28
|
-
readonly
|
|
29
|
-
readonly
|
|
30
|
-
readonly
|
|
31
|
-
readonly
|
|
32
|
-
readonly
|
|
33
|
-
readonly
|
|
34
|
-
readonly
|
|
35
|
-
readonly
|
|
36
|
-
readonly
|
|
37
|
-
readonly
|
|
38
|
-
readonly
|
|
39
|
-
readonly
|
|
40
|
-
readonly
|
|
41
|
-
readonly
|
|
42
|
-
readonly
|
|
43
|
-
readonly CaretRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretRight.js").CaretRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
44
|
-
readonly CaretUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretUp.js").CaretUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
45
|
-
readonly Chart3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Chart3.js").Chart3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
46
|
-
readonly ChartBar: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChartBar.js").ChartBarProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
47
|
-
readonly ChartCandlestick2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChartCandlestick2.js").ChartCandlestick2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
48
|
-
readonly ChatImage: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChatImage.js").ChatImageProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
49
|
-
readonly ChatInfo: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChatInfo.js").ChatInfoProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
50
|
-
readonly ChatTask: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChatTask.js").ChatTaskProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
51
|
-
readonly Check: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Check.js").CheckProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
52
|
-
readonly CheckBoxArrow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CheckBoxArrow.js").CheckBoxArrowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
53
|
-
readonly ChevronDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronDown.js").ChevronDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
54
|
-
readonly ChevronExpandY: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronExpandY.js").ChevronExpandYProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
55
|
-
readonly ChevronLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronLeft.js").ChevronLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
56
|
-
readonly ChevronLeftToLine: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronLeftToLine.js").ChevronLeftToLineProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
57
|
-
readonly ChevronRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronRight.js").ChevronRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
58
|
-
readonly ChevronRightToLine: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronRightToLine.js").ChevronRightToLineProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
59
|
-
readonly ChevronUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronUp.js").ChevronUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
60
|
-
readonly Child: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Child.js").ChildProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
61
|
-
readonly CircleCoinIn: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCoinIn.js").CircleCoinInProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
62
|
-
readonly CircleCoinOut: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCoinOut.js").CircleCoinOutProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
63
|
-
readonly CircleCoinPlus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCoinPlus.js").CircleCoinPlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
64
|
-
readonly CircleConversion: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleConversion.js").CircleConversionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
65
|
-
readonly CircleCross: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCross.js").CircleCrossProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
66
|
-
readonly CircleHalfArrowDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowDown.js").CircleHalfArrowDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
67
|
-
readonly CircleHalfArrowLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowLeft.js").CircleHalfArrowLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
68
|
-
readonly CircleHalfArrowRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowRight.js").CircleHalfArrowRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
69
|
-
readonly CircleHalfArrowUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowUp.js").CircleHalfArrowUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
70
|
-
readonly CircleHalfDottedChart2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfDottedChart2.js").CircleHalfDottedChart2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
71
|
-
readonly ClockTime: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ClockTime.js").ClockTimeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
72
|
-
readonly CloneDashed3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloneDashed3.js").CloneDashed3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
73
|
-
readonly CloneImageDashed: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloneImageDashed.js").CloneImageDashedProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
74
|
-
readonly CloneVideoDashed: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloneVideoDashed.js").CloneVideoDashedProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
75
|
-
readonly CloudeCode: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloudeCode.js").CloudeCodeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
76
|
-
readonly CoinStack: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CoinStack.js").CoinStackProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
77
|
-
readonly ConditionalLogic: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ConditionalLogic.js").ConditionalLogicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
78
|
-
readonly Connection3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Connection3.js").Connection3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
79
|
-
readonly ConnectPlus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ConnectPlus.js").ConnectPlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
80
|
-
readonly CopyDelete: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CopyDelete.js").CopyDeleteProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
81
|
-
readonly CopyId: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CopyId.js").CopyIdProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
82
|
-
readonly DarkLight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DarkLight.js").DarkLightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
83
|
-
readonly Deaf: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Deaf.js").DeafProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
84
|
-
readonly DependencyLink: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DependencyLink.js").DependencyLinkProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
85
|
-
readonly DesktopDock: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DesktopDock.js").DesktopDockProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
86
|
-
readonly DiamondSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DiamondSparkle.js").DiamondSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
87
|
-
readonly DocumentScan: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DocumentScan.js").DocumentScanProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
88
|
-
readonly Dog2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Dog2.js").Dog2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
89
|
-
readonly DogLeash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DogLeash.js").DogLeashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
90
|
-
readonly DogSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DogSlash.js").DogSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
91
|
-
readonly DotFormation: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DotFormation.js").DotFormationProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
92
|
-
readonly DrawFinger: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DrawFinger.js").DrawFingerProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
93
|
-
readonly Ear: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Ear.js").EarProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
94
|
-
readonly EarSound: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EarSound.js").EarSoundProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
95
|
-
readonly Embed: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Embed.js").EmbedProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
96
|
-
readonly EnterDoor: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EnterDoor.js").EnterDoorProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
97
|
-
readonly EnterHome: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EnterHome.js").EnterHomeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
98
|
-
readonly ExitDoor: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ExitDoor.js").ExitDoorProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
99
|
-
readonly Export2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Export2.js").Export2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
100
|
-
readonly EyeSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EyeSparkle.js").EyeSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
101
|
-
readonly FaceRobot: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FaceRobot.js").FaceRobotProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
102
|
-
readonly FaceRobot2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FaceRobot2.js").FaceRobot2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
103
|
-
readonly FaceRobot3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FaceRobot3.js").FaceRobot3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
104
|
-
readonly FerrisWheel: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FerrisWheel.js").FerrisWheelProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
105
|
-
readonly FileExport: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FileExport.js").FileExportProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
106
|
-
readonly FlagMenu: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FlagMenu.js").FlagMenuProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
107
|
-
readonly FocusCenter: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FocusCenter.js").FocusCenterProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
108
|
-
readonly FoodOrder: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FoodOrder.js").FoodOrderProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
109
|
-
readonly FuelCan: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FuelCan.js").FuelCanProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
110
|
-
readonly FuelCan2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FuelCan2.js").FuelCan2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
111
|
-
readonly Gear3Sparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Gear3Sparkle.js").Gear3SparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
112
|
-
readonly GridSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/GridSparkle.js").GridSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
113
|
-
readonly HandHoldingGlobe: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HandHoldingGlobe.js").HandHoldingGlobeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
114
|
-
readonly Handshake2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Handshake2.js").Handshake2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
115
|
-
readonly Haptic: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Haptic.js").HapticProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
116
|
-
readonly HelpChat: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HelpChat.js").HelpChatProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
117
|
-
readonly HexagonSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HexagonSparkle.js").HexagonSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
118
|
-
readonly Hiking: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Hiking.js").HikingProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
119
|
-
readonly History2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/History2.js").History2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
120
|
-
readonly HorseHead: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HorseHead.js").HorseHeadProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
121
|
-
readonly HouseDollarSign: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HouseDollarSign.js").HouseDollarSignProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
122
|
-
readonly HouseMinus2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HouseMinus2.js").HouseMinus2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
123
|
-
readonly Images3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Images3.js").Images3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
124
|
-
readonly Img4k: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Img4k.js").Img4kProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
125
|
-
readonly InsertCrypto: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InsertCrypto.js").InsertCryptoProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
126
|
-
readonly InsertDollar: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InsertDollar.js").InsertDollarProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
127
|
-
readonly InstantMoney: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InstantMoney.js").InstantMoneyProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
128
|
-
readonly InvoiceIn: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InvoiceIn.js").InvoiceInProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
129
|
-
readonly InwardFlow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InwardFlow.js").InwardFlowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
130
|
-
readonly JoinedHands: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/JoinedHands.js").JoinedHandsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
131
|
-
readonly LawShield: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LawShield.js").LawShieldProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
132
|
-
readonly Lectern: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Lectern.js").LecternProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
133
|
-
readonly Lectern2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Lectern2.js").Lectern2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
134
|
-
readonly LightSpark: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LightSpark.js").LightSparkProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
135
|
-
readonly LightSpark2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LightSpark2.js").LightSpark2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
136
|
-
readonly ListExport: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ListExport.js").ListExportProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
137
|
-
readonly ListFavs3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ListFavs3.js").ListFavs3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
138
|
-
readonly ListFavs4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ListFavs4.js").ListFavs4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
139
|
-
readonly LoadingStatus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LoadingStatus.js").LoadingStatusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
140
|
-
readonly LoadingStatus2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LoadingStatus2.js").LoadingStatus2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
141
|
-
readonly LockedChat: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LockedChat.js").LockedChatProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
142
|
-
readonly MagicHat: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MagicHat.js").MagicHatProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
143
|
-
readonly MagicRabbit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MagicRabbit.js").MagicRabbitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
144
|
-
readonly MagnifierSparkle2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MagnifierSparkle2.js").MagnifierSparkle2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
145
|
-
readonly MediaLibrary2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MediaLibrary2.js").MediaLibrary2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
146
|
-
readonly Membership: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Membership.js").MembershipProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
147
|
-
readonly Menu4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Menu4.js").Menu4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
148
|
-
readonly MilitaryMedal: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MilitaryMedal.js").MilitaryMedalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
149
|
-
readonly MobileCircuit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MobileCircuit.js").MobileCircuitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
150
|
-
readonly MoneyRefund: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoneyRefund.js").MoneyRefundProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
151
|
-
readonly MoneyRefund2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoneyRefund2.js").MoneyRefund2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
152
|
-
readonly MoonStars: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoonStars.js").MoonStarsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
153
|
-
readonly MotionAlongPath: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MotionAlongPath.js").MotionAlongPathProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
154
|
-
readonly Msgs2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Msgs2.js").Msgs2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
155
|
-
readonly Navigation: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Navigation.js").NavigationProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
156
|
-
readonly NavigationHorizontal: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/NavigationHorizontal.js").NavigationHorizontalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
157
|
-
readonly NavigationVertical: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/NavigationVertical.js").NavigationVerticalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
158
|
-
readonly ObjectSelection: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ObjectSelection.js").ObjectSelectionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
159
|
-
readonly OfficeUser: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OfficeUser.js").OfficeUserProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
160
|
-
readonly OpenExternal: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OpenExternal.js").OpenExternalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
161
|
-
readonly OrbitSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OrbitSparkle.js").OrbitSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
162
|
-
readonly OutwardFlow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OutwardFlow.js").OutwardFlowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
163
|
-
readonly PaperPlaneFast: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PaperPlaneFast.js").PaperPlaneFastProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
164
|
-
readonly Parachute: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Parachute.js").ParachuteProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
165
|
-
readonly Paw: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Paw.js").PawProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
166
|
-
readonly Peace: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Peace.js").PeaceProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
167
|
-
readonly PicnicTable: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PicnicTable.js").PicnicTableProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
168
|
-
readonly Pillow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Pillow.js").PillowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
169
|
-
readonly Playground: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Playground.js").PlaygroundProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
170
|
-
readonly Playlist4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Playlist4.js").Playlist4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
171
|
-
readonly Plug3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Plug3.js").Plug3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
172
|
-
readonly Plug3Sparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Plug3Sparkle.js").Plug3SparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
173
|
-
readonly PlugOff: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PlugOff.js").PlugOffProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
174
|
-
readonly PlugSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PlugSparkle.js").PlugSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
175
|
-
readonly PopEffect: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PopEffect.js").PopEffectProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
176
|
-
readonly ProfileAnalytics: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ProfileAnalytics.js").ProfileAnalyticsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
177
|
-
readonly ProfileBasic: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ProfileBasic.js").ProfileBasicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
178
|
-
readonly ProgressIndicator2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ProgressIndicator2.js").ProgressIndicator2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
179
|
-
readonly QuickActions: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/QuickActions.js").QuickActionsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
180
|
-
readonly QuickTimer: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/QuickTimer.js").QuickTimerProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
181
|
-
readonly Rabbit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Rabbit.js").RabbitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
182
|
-
readonly Receipt3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Receipt3.js").Receipt3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
183
|
-
readonly Receipt4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Receipt4.js").Receipt4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
184
|
-
readonly Redo2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Redo2.js").Redo2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
185
|
-
readonly Redo3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Redo3.js").Redo3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
186
|
-
readonly Refresh3AnticlockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Refresh3AnticlockwiseSlash.js").Refresh3AnticlockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
187
|
-
readonly Refresh3ClockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Refresh3ClockwiseSlash.js").Refresh3ClockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
188
|
-
readonly RefreshAnticlockwise: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshAnticlockwise.js").RefreshAnticlockwiseProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
189
|
-
readonly RefreshAnticlockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshAnticlockwiseSlash.js").RefreshAnticlockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
190
|
-
readonly RefreshClockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshClockwiseSlash.js").RefreshClockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
191
|
-
readonly Refrigerator: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Refrigerator.js").RefrigeratorProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
192
|
-
readonly RemoteControl: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RemoteControl.js").RemoteControlProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
193
|
-
readonly RemoteControl2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RemoteControl2.js").RemoteControl2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
194
|
-
readonly ReportFile: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ReportFile.js").ReportFileProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
195
|
-
readonly Reposition: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Reposition.js").RepositionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
196
|
-
readonly Rerouting: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Rerouting.js").ReroutingProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
197
|
-
readonly Robot2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Robot2.js").Robot2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
198
|
-
readonly Robot3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Robot3.js").Robot3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
199
|
-
readonly Robot4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Robot4.js").Robot4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
200
|
-
readonly RockOn: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RockOn.js").RockOnProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
201
|
-
readonly RopeStanchions: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RopeStanchions.js").RopeStanchionsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
202
|
-
readonly Rotation3602: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Rotation3602.js").Rotation3602Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
203
|
-
readonly SavedItems2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SavedItems2.js").SavedItems2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
204
|
-
readonly ScaleImg4k: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ScaleImg4k.js").ScaleImg4kProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
205
|
-
readonly ScanImage: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ScanImage.js").ScanImageProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
206
|
-
readonly ScissorsSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ScissorsSparkle.js").ScissorsSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
207
|
-
readonly Seatbelt: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Seatbelt.js").SeatbeltProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
208
|
-
readonly ShakaHand: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ShakaHand.js").ShakaHandProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
209
|
-
readonly ShapeRectangle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ShapeRectangle.js").ShapeRectangleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
210
|
-
readonly Shovel: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Shovel.js").ShovelProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
211
|
-
readonly ShuffleSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ShuffleSparkle.js").ShuffleSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
212
|
-
readonly SidebarEdit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SidebarEdit.js").SidebarEditProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
213
|
-
readonly SideProfileQuestion: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SideProfileQuestion.js").SideProfileQuestionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
214
|
-
readonly SideProfileSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SideProfileSparkle.js").SideProfileSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
215
|
-
readonly SlashCircle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SlashCircle.js").SlashCircleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
216
|
-
readonly Sliders4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sliders4.js").Sliders4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
217
|
-
readonly Snail: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Snail.js").SnailProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
218
|
-
readonly Spiral: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Spiral.js").SpiralProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
219
|
-
readonly SplitView: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SplitView.js").SplitViewProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
220
|
-
readonly SquareDashedSearchSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SquareDashedSearchSparkle.js").SquareDashedSearchSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
221
|
-
readonly SquareDashedText: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SquareDashedText.js").SquareDashedTextProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
222
|
-
readonly SquarePath: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SquarePath.js").SquarePathProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
223
|
-
readonly Star2Slash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Star2Slash.js").Star2SlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
224
|
-
readonly StopSign: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/StopSign.js").StopSignProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
225
|
-
readonly StopwatchBolt: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/StopwatchBolt.js").StopwatchBoltProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
226
|
-
readonly SummitFlag: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SummitFlag.js").SummitFlagProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
227
|
-
readonly Sun: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sun.js").SunProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
228
|
-
readonly Sunrise2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sunrise2.js").Sunrise2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
229
|
-
readonly Task: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Task.js").TaskProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
230
|
-
readonly Task2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Task2.js").Task2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
231
|
-
readonly TaskDebug: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TaskDebug.js").TaskDebugProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
232
|
-
readonly TaskSearch: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TaskSearch.js").TaskSearchProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
233
|
-
readonly Teepee: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Teepee.js").TeepeeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
234
|
-
readonly TextAdjust: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TextAdjust.js").TextAdjustProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
235
|
-
readonly TheatreMask: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TheatreMask.js").TheatreMaskProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
236
|
-
readonly TheatreMask2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TheatreMask2.js").TheatreMask2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
237
|
-
readonly TimerProgress: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TimerProgress.js").TimerProgressProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
238
|
-
readonly TimerProgress2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TimerProgress2.js").TimerProgress2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
239
|
-
readonly TransactionSplit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TransactionSplit.js").TransactionSplitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
240
|
-
readonly Undo2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Undo2.js").Undo2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
241
|
-
readonly Undo3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Undo3.js").Undo3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
242
|
-
readonly UnicornHead: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/UnicornHead.js").UnicornHeadProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
243
|
-
readonly UserContact: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/UserContact.js").UserContactProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
244
|
-
readonly UserVoice2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/UserVoice2.js").UserVoice2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
245
|
-
readonly VipBadge: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/VipBadge.js").VipBadgeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
246
|
-
readonly VoiceCaption: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/VoiceCaption.js").VoiceCaptionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
247
|
-
readonly WalletCoins: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/WalletCoins.js").WalletCoinsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
248
|
-
readonly Weight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Weight.js").WeightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
11
|
+
readonly ArrowDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDown").ArrowDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
12
|
+
readonly ArrowDownLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDownLeft").ArrowDownLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
13
|
+
readonly ArrowDownRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDownRight").ArrowDownRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
14
|
+
readonly ArrowLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowLeft").ArrowLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
15
|
+
readonly ArrowRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRight").ArrowRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
16
|
+
readonly ArrowUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUp").ArrowUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
17
|
+
readonly ArrowUpLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUpLeft").ArrowUpLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
18
|
+
readonly ArrowUpRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUpRight").ArrowUpRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
19
|
+
readonly CaretDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretDown").CaretDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
20
|
+
readonly CaretLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretLeft").CaretLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
21
|
+
readonly CaretRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretRight").CaretRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
22
|
+
readonly CaretUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretUp").CaretUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
23
|
+
readonly Check: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Check").CheckProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
24
|
+
readonly ChevronDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronDown").ChevronDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
25
|
+
readonly ChevronExpandY: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronExpandY").ChevronExpandYProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
26
|
+
readonly ChevronLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronLeft").ChevronLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
27
|
+
readonly ChevronRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronRight").ChevronRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
28
|
+
readonly ChevronUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronUp").ChevronUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
29
|
+
readonly CircleHalfDottedClock: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfDottedClock").CircleHalfDottedClockProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
30
|
+
readonly Clock: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Clock").ClockProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
31
|
+
readonly DarkLight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DarkLight").DarkLightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
32
|
+
readonly History: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/History").HistoryProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
33
|
+
readonly Lock: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Lock").LockProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
34
|
+
readonly LockOpen: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LockOpen").LockOpenProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
35
|
+
readonly Magnifier: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Magnifier").MagnifierProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
36
|
+
readonly Minus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Minus").MinusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
37
|
+
readonly MoonStars: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoonStars").MoonStarsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
38
|
+
readonly Plus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Plus").PlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
39
|
+
readonly Quickstart: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Quickstart").QuickstartProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
40
|
+
readonly RefreshAnticlockwise: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshAnticlockwise").RefreshAnticlockwiseProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
41
|
+
readonly Sun: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sun").SunProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
42
|
+
readonly Xmark: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Xmark").XmarkProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
249
43
|
};
|
|
250
44
|
};
|
|
251
45
|
export declare const generatedDefaultIconVariant: "duo";
|