@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,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const JoinedHands = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M8.25 8.625c0-.62-.505-1.125-1.125-1.125S6 8.005 6 8.625v2.125a.75.75 0 0 1-1.5 0V8.625a2.62 2.62 0 0 1 1.729-2.457l1.753-2.644a1.43 1.43 0 0 0 .219-1.1 1.3 1.3 0 0 0-.609-.838 1.345 1.345 0 0 0-1.723.312L2.566 6.13A2.5 2.5 0 0 0 2 7.714v5.105l-.804.964a.853.853 0 0 0 .386 1.354l3.804 1.269q.135.045.27.044a.85.85 0 0 0 .601-.25l1.26-1.26c.473-.473.733-1.1.733-1.769z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M9.75 8.625c0-.62.505-1.125 1.125-1.125S12 8.005 12 8.625v2.125a.75.75 0 0 0 1.5 0V8.625a2.62 2.62 0 0 0-1.728-2.457l-1.754-2.644a1.43 1.43 0 0 1-.219-1.1c.08-.353.295-.65.609-.838a1.345 1.345 0 0 1 1.723.312l3.303 4.233c.365.445.566 1.007.566 1.583v5.105l.804.964a.853.853 0 0 1-.386 1.354l-3.804 1.269a.85.85 0 0 1-.872-.206l-1.26-1.26a2.48 2.48 0 0 1-.732-1.769z" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
JoinedHands.displayName = 'JoinedHands';
|
|
13
|
-
export default JoinedHands;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface LawShieldProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const LawShield: React.ForwardRefExoticComponent<Omit<LawShieldProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default LawShield;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const LawShield = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M11.563 15.806a2.98 2.98 0 0 1-2.122-.88l-1.444-1.444c-.566-.566-.879-1.32-.879-2.121s.313-1.555.88-2.121l2.742-2.743a2.97 2.97 0 0 1 2.117-.879c.806 0 1.56.313 2.127.88L16 7.515V4.48c0-.765-.49-1.435-1.217-1.666l-5.249-1.68a1.76 1.76 0 0 0-1.067 0l-5.25 1.68A1.74 1.74 0 0 0 2 4.48V11c0 3.506 4.945 5.378 6.463 5.87a1.75 1.75 0 0 0 1.075-.001 17 17 0 0 0 2.72-1.153c-.226.054-.457.09-.695.09", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m16.78 14.22-2.255-2.256.841-.84c.283-.284.44-.66.44-1.061s-.156-.778-.44-1.06l-1.444-1.445a1.5 1.5 0 0 0-1.06-.44h-.003c-.4 0-.777.157-1.058.44L9.058 10.3c-.284.284-.44.66-.44 1.06s.156.778.44 1.061l1.444 1.445c.283.283.66.44 1.06.44s.778-.156 1.06-.44l.842-.841 2.256 2.255a.747.747 0 0 0 1.06 0 .75.75 0 0 0 0-1.06" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
LawShield.displayName = 'LawShield';
|
|
13
|
-
export default LawShield;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface LecternProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const Lectern: React.ForwardRefExoticComponent<Omit<LecternProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default Lectern;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const Lectern = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "m16.3 8.532-1.35-3A1.75 1.75 0 0 0 13.353 4.5H4.647a1.75 1.75 0 0 0-1.596 1.032l-1.35 3c-.245.544-.198 1.167.126 1.668s.873.8 1.47.8h11.407c.596 0 1.145-.299 1.469-.8s.37-1.124.126-1.668", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M4.647 4.5H6V2.916l1.648-1.03A.75.75 0 0 0 6.853.614l-2 1.25A.75.75 0 0 0 4.5 2.5v2.02c.05-.4.096-.21.147-.021ZM12.25 15h-2.5v-4h-1.5v4h-2.5a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
Lectern.displayName = 'Lectern';
|
|
13
|
-
export default Lectern;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface Lectern2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const Lectern2: React.ForwardRefExoticComponent<Omit<Lectern2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default Lectern2;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const Lectern2 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "m16.38 7.087-1.431-3.5a1.74 1.74 0 0 0-1.62-1.087H4.67c-.713 0-1.35.427-1.62 1.087l-1.431 3.5A1.747 1.747 0 0 0 3.24 9.5h11.52a1.748 1.748 0 0 0 1.62-2.413", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M12.75 14.5h-3v-5h-1.5v5h-3a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
Lectern2.displayName = 'Lectern2';
|
|
13
|
-
export default Lectern2;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface LightSparkProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const LightSpark: React.ForwardRefExoticComponent<Omit<LightSparkProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default LightSpark;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const LightSpark = 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 10.5a.75.75 0 0 0-.75.75v5a.75.75 0 0 0 1.5 0v-5A.75.75 0 0 0 9 10.5M9 1a.75.75 0 0 0-.75.75v5a.75.75 0 0 0 1.5 0v-5A.75.75 0 0 0 9 1M6.75 8.25h-5a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5m9.5 0h-5a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5" }), _jsx("path", { d: "M4.97 6.03a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06l-1.5-1.5a.75.75 0 1 0-1.06 1.06zm7.53.22a.75.75 0 0 0 .53-.22l1.5-1.5a.75.75 0 1 0-1.06-1.06l-1.5 1.5a.75.75 0 0 0 .53 1.28m.53 5.72a.75.75 0 1 0-1.06 1.06l1.5 1.5a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06zm-8.06 0-1.5 1.5a.75.75 0 1 0 1.06 1.06l1.5-1.5a.75.75 0 1 0-1.06-1.06", "data-color": "color-2", opacity: ".4" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
LightSpark.displayName = 'LightSpark';
|
|
13
|
-
export default LightSpark;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface LightSpark2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const LightSpark2: React.ForwardRefExoticComponent<Omit<LightSpark2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default LightSpark2;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const LightSpark2 = 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 12a.75.75 0 0 0-.75.75v3.5a.75.75 0 0 0 1.5 0v-3.5A.75.75 0 0 0 9 12m0-6a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-1.5 0v3.5c0 .414.336.75.75.75M6 9a.75.75 0 0 0-.75-.75h-3.5a.75.75 0 0 0 0 1.5h3.5A.75.75 0 0 0 6 9m10.25-.75h-3.5a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5" }), _jsx("path", { d: "m5.818 11.122-2.475 2.474a.75.75 0 1 0 1.06 1.06l2.476-2.474a.75.75 0 1 0-1.061-1.06m5.834-4.024a.75.75 0 0 0 .53-.22l2.475-2.474a.75.75 0 1 0-1.06-1.06l-2.475 2.474a.75.75 0 0 0 .53 1.28M4.404 3.343a.75.75 0 1 0-1.06 1.06l2.474 2.475a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06zm7.778 7.779a.75.75 0 1 0-1.06 1.06l2.474 2.475a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06z", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "9", cy: "9", r: "1.5" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
LightSpark2.displayName = 'LightSpark2';
|
|
13
|
-
export default LightSpark2;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface ListExportProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const ListExport: React.ForwardRefExoticComponent<Omit<ListExportProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default ListExport;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const ListExport = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M13.03 10.47a.75.75 0 1 0-1.06 1.06L13.44 13H4.75c-.69 0-1.25-.56-1.25-1.25v-9.5a.75.75 0 0 0-1.5 0v9.5a2.753 2.753 0 0 0 2.75 2.75h8.69l-1.47 1.47a.75.75 0 1 0 1.06 1.06l2.75-2.75a.75.75 0 0 0 0-1.06z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M6.75 5h6.5a.75.75 0 0 0 0-1.5h-6.5a.75.75 0 0 0 0 1.5m0 3.5h6.5a.75.75 0 0 0 0-1.5h-6.5a.75.75 0 0 0 0 1.5" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
ListExport.displayName = 'ListExport';
|
|
13
|
-
export default ListExport;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface ListFavs3Props extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const ListFavs3: React.ForwardRefExoticComponent<Omit<ListFavs3Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default ListFavs3;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const ListFavs3 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M15.75 6h-6a.75.75 0 0 1 0-1.5h6a.75.75 0 0 1 0 1.5m0 7.5h-6a.75.75 0 0 1 0-1.5h6a.75.75 0 0 1 0 1.5", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M4.298 7.919a.43.43 0 0 0 .404 0C5.375 7.565 7.5 6.283 7.5 4.199A1.656 1.656 0 0 0 5.86 2.53a1.66 1.66 0 0 0-1.36.743 1.66 1.66 0 0 0-1.36-.743A1.656 1.656 0 0 0 1.5 4.198c0 2.085 2.125 3.367 2.798 3.72m0 7.469a.43.43 0 0 0 .404 0c.673-.353 2.798-1.636 2.798-3.72A1.656 1.656 0 0 0 5.86 10a1.66 1.66 0 0 0-1.36.743A1.66 1.66 0 0 0 3.14 10a1.656 1.656 0 0 0-1.64 1.667c0 2.085 2.125 3.367 2.798 3.72" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
ListFavs3.displayName = 'ListFavs3';
|
|
13
|
-
export default ListFavs3;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface ListFavs4Props extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const ListFavs4: React.ForwardRefExoticComponent<Omit<ListFavs4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default ListFavs4;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const ListFavs4 = 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: "M3.603 5.713a.31.31 0 0 0 .296 0c.495-.26 2.059-1.203 2.059-2.737A1.22 1.22 0 0 0 4.752 1.75a1.22 1.22 0 0 0-1.001.547 1.22 1.22 0 0 0-1-.547 1.22 1.22 0 0 0-1.207 1.226c0 1.534 1.564 2.477 2.059 2.737m0 5.25a.31.31 0 0 0 .296 0c.495-.26 2.059-1.203 2.059-2.737A1.22 1.22 0 0 0 4.752 7a1.22 1.22 0 0 0-1.001.547 1.22 1.22 0 0 0-1-.547 1.22 1.22 0 0 0-1.207 1.226c0 1.534 1.564 2.477 2.059 2.737m0 5.25a.31.31 0 0 0 .296 0c.495-.26 2.059-1.203 2.059-2.737a1.22 1.22 0 0 0-1.206-1.226 1.22 1.22 0 0 0-1.001.547 1.22 1.22 0 0 0-1-.547 1.22 1.22 0 0 0-1.207 1.226c0 1.534 1.564 2.477 2.059 2.737" }), _jsx("path", { d: "M15.75 9.75h-7.5a.75.75 0 0 1 0-1.5h7.5a.75.75 0 0 1 0 1.5m0-5.25h-7.5a.75.75 0 0 1 0-1.5h7.5a.75.75 0 0 1 0 1.5m0 10.5h-7.5a.75.75 0 0 1 0-1.5h7.5a.75.75 0 0 1 0 1.5", "data-color": "color-2", opacity: ".4" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
ListFavs4.displayName = 'ListFavs4';
|
|
13
|
-
export default ListFavs4;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface LoadingStatusProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const LoadingStatus: React.ForwardRefExoticComponent<Omit<LoadingStatusProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default LoadingStatus;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const LoadingStatus = 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: "M17 8.25h-1.547C15.08 5.019 12.33 2.5 9 2.5S2.92 5.019 2.547 8.25H1a.75.75 0 0 0 0 1.5h1.547C2.92 12.981 5.67 15.5 9 15.5s6.08-2.519 6.453-5.75H17a.75.75 0 0 0 0-1.5", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M9 7.25a.75.75 0 0 1-.75-.75v-1a.75.75 0 0 1 1.5 0v1a.75.75 0 0 1-.75.75" }), _jsx("path", { d: "M6.835 8.5a.75.75 0 0 1-.375-.1l-.866-.5a.75.75 0 1 1 .75-1.3l.866.5a.75.75 0 0 1-.375 1.4", opacity: ".25" }), _jsx("path", { d: "M5.97 11.5a.749.749 0 0 1-.376-1.4l.866-.5a.749.749 0 1 1 .75 1.3l-.866.5a.75.75 0 0 1-.375.1", opacity: ".4" }), _jsx("path", { d: "M9 13.25a.75.75 0 0 1-.75-.75v-1a.75.75 0 0 1 1.5 0v1a.75.75 0 0 1-.75.75", opacity: ".55" }), _jsx("path", { d: "M12.03 11.5a.75.75 0 0 1-.374-.1l-.866-.5a.75.75 0 1 1 .75-1.3l.866.5a.75.75 0 0 1-.375 1.4", opacity: ".7" }), _jsx("path", { d: "M11.166 8.5a.749.749 0 0 1-.376-1.4l.866-.5a.75.75 0 1 1 .75 1.299l-.866.5a.75.75 0 0 1-.374.101", opacity: ".85" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
LoadingStatus.displayName = 'LoadingStatus';
|
|
13
|
-
export default LoadingStatus;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface LoadingStatus2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const LoadingStatus2: React.ForwardRefExoticComponent<Omit<LoadingStatus2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default LoadingStatus2;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const LoadingStatus2 = 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: "M17 8.25h-1.547C15.08 5.019 12.33 2.5 9 2.5S2.92 5.019 2.547 8.25H1a.75.75 0 0 0 0 1.5h1.547C2.92 12.981 5.67 15.5 9 15.5s6.08-2.519 6.453-5.75H17a.75.75 0 0 0 0-1.5", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M10.677 10.5A2.25 2.25 0 0 1 9 11.25a2.23 2.23 0 0 1-1.722-.82l.576-.576A.5.5 0 0 0 7.5 9h-2a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .854.354l.353-.354A3.73 3.73 0 0 0 9 12.75a3.76 3.76 0 0 0 2.794-1.249.75.75 0 1 0-1.117-1.001m2.014-4.462a.5.5 0 0 0-.545.108l-.353.354A3.73 3.73 0 0 0 9 5.25a3.76 3.76 0 0 0-2.794 1.249A.75.75 0 1 0 7.323 7.5 2.25 2.25 0 0 1 9 6.75c.682 0 1.3.311 1.722.82l-.576.577A.5.5 0 0 0 10.5 9h2a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.309-.462" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
LoadingStatus2.displayName = 'LoadingStatus2';
|
|
13
|
-
export default LoadingStatus2;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface LockedChatProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const LockedChat: React.ForwardRefExoticComponent<Omit<LockedChatProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default LockedChat;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const LockedChat = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M13.5 4h-9A2.503 2.503 0 0 0 2 6.5V12c0 1.378 1.122 2.5 2.5 2.5H5v1.75a.75.75 0 0 0 1.207.594L9.256 14.5H13.5c1.378 0 2.5-1.122 2.5-2.5V6.5C16 5.122 14.878 4 13.5 4", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M10.75 11.5h-5a.75.75 0 0 1 0-1.5h5a.75.75 0 0 1 0 1.5m1.5-3h-6.5a.75.75 0 0 1 0-1.5h6.5a.75.75 0 0 1 0 1.5M7.5 4v-.516C7.5 2.666 8.166 2 8.984 2s1.485.666 1.485 1.484V4h1.5v-.516C11.969 1.84 10.629.5 8.984.5S6 1.839 6 3.484V4z" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
LockedChat.displayName = 'LockedChat';
|
|
13
|
-
export default LockedChat;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface MagicHatProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const MagicHat: React.ForwardRefExoticComponent<Omit<MagicHatProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default MagicHat;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const MagicHat = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M14.677 8.19C13.134 8.736 11.03 9 9 9s-4.134-.263-5.677-.81c.138 2.08-.015 3.957-.22 5.674-.96.827.394 1.613 1.168 1.87 1.569.52 3.149.78 4.729.78s3.161-.261 4.73-.78c.773-.257 1.263-1.043 1.166-1.87-.204-1.718-.357-3.595-.219-5.675", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M10.905 3.08a2 2 0 0 1-1.27 1.3l-.551.186-.185.56A2 2 0 0 1 5.1 5.124l-.185-.557-.552-.186a2 2 0 0 1-.886-.625C2.003 4.248 1 4.988 1 6c0 2.061 4.147 3 8 3s8-.939 8-3c0-1.722-2.895-2.658-6.095-2.92", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M9.157 2.004 7.895 1.58 7.474.308c-.137-.41-.812-.41-.949 0L6.104 1.58l-1.262.424a.503.503 0 0 0 0 .954l1.262.424.421 1.272c.68.205.26.344.475.344s.406-.139.475-.344l.421-1.272 1.262-.424a.503.503 0 0 0-.001-.954M10.75 6a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M9 11.25c2.162 0 4.128-.319 5.64-.838a25 25 0 0 1 .037-2.223C13.134 8.737 11.03 9 9 9s-4.134-.263-5.677-.81c.51.77.053 1.505.036 2.222 1.513.52 3.48.838 5.641.838" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
MagicHat.displayName = 'MagicHat';
|
|
13
|
-
export default MagicHat;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface MagicRabbitProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const MagicRabbit: React.ForwardRefExoticComponent<Omit<MagicRabbitProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default MagicRabbit;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const MagicRabbit = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M15.35 3.204c-.21.542-.64.983-1.214 1.176l-.551.185-.186.56A2 2 0 0 1 11.5 6.5c-.4 0-.773-.13-1.09-.338-.4.158-.84.31-.118.472a15 15 0 0 0-.259 1.73 4.7 4.7 0 0 0-2.066 0 15 15 0 0 0-.259-1.73c-.314-1.494-.825-2.86-1.438-3.847-.9-1.448-1.715-1.62-2.243-1.51-.526.11-1.204.597-1.444 2.287-.164 1.15-.081 2.606.234 4.1.29 1.376.746 2.643 1.297 3.606a5.4 5.4 0 0 0-.613 2.48c0 .179.03.353.046.53C4.633 14.946 6.52 15.5 9 15.5s4.367-.552 5.454-1.22c.017-.177.046-.351.046-.53 0-.858-.206-1.69-.613-2.48.551-.963 1.008-2.23 1.298-3.607.314-1.493.397-2.95.234-4.1-.02-.13-.045-.242-.068-.359Z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m13.657 2.004-1.262-.424-.421-1.272c-.137-.41-.812-.41-.949 0l-.421 1.272-1.262.424a.503.503 0 0 0 0 .954l1.262.424.421 1.272c.68.205.26.344.475.344s.406-.139.475-.344l.421-1.272 1.262-.424a.503.503 0 0 0-.001-.954" }), _jsx("ellipse", { cx: "7.25", cy: "13.25", rx: ".75", ry: "1.25" }), _jsx("ellipse", { cx: "10.75", cy: "13.25", rx: ".75", ry: "1.25" }), _jsx("path", { d: "M8.591 14.75h.818c.326 0 .591.265.591.591a.91.91 0 0 1-.909.909H8.91a.91.91 0 0 1-.91-.909c0-.326.265-.591.592-.591ZM.75 9.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" }), _jsx("path", { d: "M14.464 10.039q-.143.357-.299.688l-.002-.002c-.9.187-.18.376-.276.545.407.79.613 1.622.613 2.48 0 .179-.3.353-.46.53-.158.097-.34.19-.534.28l-.1.005c-1.125.533-2.805.935-4.919.935s-3.794-.402-4.919-.935l-.001-.005a5 5 0 0 1-.534-.28c-.017-.177-.046-.351-.046-.53 0-.858.206-1.69.613-2.48-.097-.169-.186-.358-.276-.545l-.2.002q-.156-.33-.3-.688C1.902 10.779 1 11.816 1 13c0 2.28 3.44 4 8 4s8-1.72 8-4c0-1.184-.901-2.221-2.536-2.961" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
MagicRabbit.displayName = 'MagicRabbit';
|
|
13
|
-
export default MagicRabbit;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface MagnifierSparkle2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const MagnifierSparkle2: React.ForwardRefExoticComponent<Omit<MagnifierSparkle2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default MagnifierSparkle2;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const MagnifierSparkle2 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M12.66 11.6a6 6 0 0 0 .408-.577.75.75 0 1 0-1.277-.787A4.72 4.72 0 0 1 7.75 12.5C5.13 12.5 3 10.37 3 7.75S5.13 3 7.75 3c.224 0 .443.022.66.052a.75.75 0 1 0 .206-1.485A6 6 0 0 0 7.75 1.5C4.304 1.5 1.5 4.304 1.5 7.75S4.304 14 7.75 14c1.429 0 2.77-.485 3.85-1.339l3.62 3.62a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.061z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "m16.487 4.038-1.894-.63-.631-1.895a.75.75 0 0 0-1.423 0l-.632 1.894-1.894.631a.75.75 0 0 0 0 1.424l1.894.63.632 1.895a.75.75 0 0 0 1.423 0l.63-1.894 1.895-.631a.75.75 0 0 0 0-1.424" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
MagnifierSparkle2.displayName = 'MagnifierSparkle2';
|
|
13
|
-
export default MagnifierSparkle2;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface MediaLibrary2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const MediaLibrary2: React.ForwardRefExoticComponent<Omit<MediaLibrary2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default MediaLibrary2;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const MediaLibrary2 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M13.75 4.5h-6.5A2.75 2.75 0 0 0 4.5 7.25v6.5a2.75 2.75 0 0 0 2.75 2.75h6.5a2.75 2.75 0 0 0 2.75-2.75v-6.5a2.75 2.75 0 0 0-2.75-2.75", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M4.5 13.75v-6.5A2.753 2.753 0 0 1 7.25 4.5h5.804L12.9 3.46a2.753 2.753 0 0 0-3.125-2.315L3.346 2.1A2.753 2.753 0 0 0 1.03 5.224l.955 6.43a2.75 2.75 0 0 0 2.54 2.337c-.008-.08-.025-.158-.025-.241" }), _jsx("path", { d: "M12.657 9.879 9.67 7.857a.75.75 0 0 0-1.17.621v4.044a.75.75 0 0 0 1.17.621l2.987-2.022a.75.75 0 0 0 0-1.242" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
MediaLibrary2.displayName = 'MediaLibrary2';
|
|
13
|
-
export default MediaLibrary2;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface MembershipProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const Membership: React.ForwardRefExoticComponent<Omit<MembershipProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default Membership;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const Membership = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("rect", { width: "12", height: "16", x: "3", y: "1", "data-color": "color-2", opacity: ".4", rx: "2.75", ry: "2.75" }), _jsx("path", { d: "M9 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m2.25-4.5h-4.5a.75.75 0 0 1 0-1.5h4.5a.75.75 0 0 1 0 1.5m.132 8.5c.573 0 .973-.608.71-1.116a3.477 3.477 0 0 0-6.183 0c-.264.508.136 1.116.709 1.116z" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
Membership.displayName = 'Membership';
|
|
13
|
-
export default Membership;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface Menu4Props extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const Menu4: React.ForwardRefExoticComponent<Omit<Menu4Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default Menu4;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const Menu4 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M15.75 9.75H2.25a.75.75 0 0 1 0-1.5h13.5a.75.75 0 0 1 0 1.5" }), _jsx("path", { d: "M15.75 5.5H2.25a.75.75 0 0 1 0-1.5h13.5a.75.75 0 0 1 0 1.5m0 8.5H2.25a.75.75 0 0 1 0-1.5h13.5a.75.75 0 0 1 0 1.5", "data-color": "color-2", opacity: ".4" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
Menu4.displayName = 'Menu4';
|
|
13
|
-
export default Menu4;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface MilitaryMedalProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const MilitaryMedal: React.ForwardRefExoticComponent<Omit<MilitaryMedalProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default MilitaryMedal;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const MilitaryMedal = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M5.83 1c-.486 0-.954.205-1.284.561s-.498.839-.461 1.323l.118 1.537a1.76 1.76 0 0 0 1.13 1.505l3.403 1.276A.8.8 0 0 0 9 7.25V1z", "data-color": "color-2", opacity: ".2" }), _jsx("path", { d: "M12.667 5.926a1.76 1.76 0 0 0 1.13-1.504l.118-1.538a1.76 1.76 0 0 0-.46-1.323 1.76 1.76 0 0 0-1.285-.56H9v6.25a.8.8 0 0 0 .264-.049z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M14.644 10.195a1.015 1.015 0 0 0-.974-.695h-2.824l-.874-2.718-.001-.003a1.02 1.02 0 0 0-1.942.002L7.153 9.5H4.33c-.447 0-.839.28-.973.695-.133.41.17.86.374 1.119l2.285 1.661-.872 2.687a1.019 1.019 0 0 0 1.57 1.142L9 15.144l2.287 1.66a1.01 1.01 0 0 0 1.2 0 1.02 1.02 0 0 0 .37-1.141l-.873-2.688 2.286-1.66c.356-.26.506-.709.374-1.12" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
MilitaryMedal.displayName = 'MilitaryMedal';
|
|
13
|
-
export default MilitaryMedal;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface MobileCircuitProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const MobileCircuit: React.ForwardRefExoticComponent<Omit<MobileCircuitProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default MobileCircuit;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const MobileCircuit = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M5.25 1A2.75 2.75 0 0 0 2.5 3.75v10.5A2.75 2.75 0 0 0 5.25 17h6.5a2.75 2.75 0 0 0 2.75-2.75V3.75A2.75 2.75 0 0 0 11.75 1z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M11.25 1v.75C11.25 2.44 10.69 3 10 3H7c-.69 0-1.25-.56-1.25-1.25V1zM15 6.25a2 2 0 0 0-1.851 1.25H9.75a.75.75 0 0 0 0 1.5h3.399A2 2 0 0 0 15 10.25c1.103 0 2-.897 2-2s-.897-2-2-2m-1 6.25c-.277 0-.54.057-.78.159l-1.147-1.146A1.74 1.74 0 0 0 10.836 11H9.75a.75.75 0 0 0 0 1.5h1.086c.067 0 .13.026.177.073l1.146 1.146A2.002 2.002 0 0 0 14 16.5c1.103 0 2-.896 2-2s-.897-2-2-2" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
MobileCircuit.displayName = 'MobileCircuit';
|
|
13
|
-
export default MobileCircuit;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface MoneyRefundProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const MoneyRefund: React.ForwardRefExoticComponent<Omit<MoneyRefundProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default MoneyRefund;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const MoneyRefund = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M16.25 7.238a.75.75 0 0 0-.75.75v4.262c0 .69-.56 1.25-1.25 1.25H3.56l.72-.72a.75.75 0 1 0-1.06-1.06l-2 2a.75.75 0 0 0 0 1.06l2 2a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06L3.56 15h10.69A2.753 2.753 0 0 0 17 12.25V7.988a.75.75 0 0 0-.75-.75m-14.5 3.535a.75.75 0 0 0 .75-.75V5.75c0-.69.56-1.25 1.25-1.25h10.69l-.72.72a.75.75 0 1 0 1.06 1.06l2-2a.75.75 0 0 0 0-1.06l-2-2a.75.75 0 1 0-1.06 1.06l.72.72H3.75A2.753 2.753 0 0 0 1 5.75v4.273c0 .414.336.75.75.75", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "9", cy: "9", r: "2.25" }), _jsx("path", { d: "M3.75 4.5c-.69 0-1.25.56-1.25 1.25v2.4A4.46 4.46 0 0 0 6.15 4.5zm10.5 9c.69 0 1.25-.56 1.25-1.25v-2.4a4.46 4.46 0 0 0-3.65 3.65z" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
MoneyRefund.displayName = 'MoneyRefund';
|
|
13
|
-
export default MoneyRefund;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface MoneyRefund2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const MoneyRefund2: React.ForwardRefExoticComponent<Omit<MoneyRefund2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default MoneyRefund2;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const MoneyRefund2 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "m16.78 3.22-2-2a.75.75 0 1 0-1.06 1.06l.72.72H3.75A2.753 2.753 0 0 0 1 5.75v4.273a.75.75 0 0 0 1.5 0V5.75c0-.69.56-1.25 1.25-1.25h10.69l-.72.72a.75.75 0 1 0 1.06 1.06l2-2a.75.75 0 0 0 0-1.06m-.53 4.018a.75.75 0 0 0-.75.75v4.262c0 .69-.56 1.25-1.25 1.25H3.56l.72-.72a.75.75 0 1 0-1.06-1.06l-2 2a.75.75 0 0 0 0 1.06l2 2a.75.75 0 0 0 1.06 0 .75.75 0 0 0 0-1.06L3.56 15h10.69A2.753 2.753 0 0 0 17 12.25V7.988a.75.75 0 0 0-.75-.75", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "9", cy: "9", r: "2.25" }), _jsx("circle", { cx: "4.25", cy: "9", r: ".75" }), _jsx("circle", { cx: "13.75", cy: "9", r: ".75" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
MoneyRefund2.displayName = 'MoneyRefund2';
|
|
13
|
-
export default MoneyRefund2;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface MotionAlongPathProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const MotionAlongPath: React.ForwardRefExoticComponent<Omit<MotionAlongPathProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default MotionAlongPath;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const MotionAlongPath = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M11.5 14.5h-5C3.468 14.5 1 12.033 1 9s2.468-5.5 5.5-5.5a.75.75 0 0 1 0 1.5c-2.206 0-4 1.794-4 4s1.794 4 4 4h5c2.206 0 4-1.794 4-4s-1.794-4-4-4a.75.75 0 0 1 0-1.5C14.532 3.5 17 5.967 17 9s-2.468 5.5-5.5 5.5", "data-color": "color-2", opacity: ".4" }), _jsx("circle", { cx: "7.5", cy: "4.25", r: "1.75" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
MotionAlongPath.displayName = 'MotionAlongPath';
|
|
13
|
-
export default MotionAlongPath;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface Msgs2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const Msgs2: React.ForwardRefExoticComponent<Omit<Msgs2Props, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default Msgs2;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import React from 'react';
|
|
3
|
-
const Msgs2 = React.forwardRef(({ size, className, style, ...props }, ref) => {
|
|
4
|
-
const dimensions = size
|
|
5
|
-
? { width: size, height: size }
|
|
6
|
-
: {
|
|
7
|
-
width: props.width || 18,
|
|
8
|
-
height: props.height || 18,
|
|
9
|
-
};
|
|
10
|
-
return (_jsx("svg", { ref: ref, viewBox: "0 0 18 18", xmlns: "http://www.w3.org/2000/svg", width: dimensions.width, height: dimensions.height, fill: props.fill || 'currentColor', className: className, style: style, ...props, children: _jsxs("g", { className: "nc-icon-wrapper", children: [_jsx("path", { d: "M7.456 1.503c-1.52-.062-2.973.514-4.095 1.598A6.13 6.13 0 0 0 1.5 7.49v4.26c0 .69.56 1.25 1.25 1.25h4.26a6.13 6.13 0 0 0 4.389-1.86c1.083-1.123 1.65-2.578 1.597-4.096-.107-3-2.54-5.434-5.54-5.54Z", "data-color": "color-2", opacity: ".4" }), _jsx("path", { d: "M14.93 8.3c-.94-.896-2.153-1.361-3.415-1.294a4.73 4.73 0 0 0-4.51 4.509 4.5 4.5 0 0 0 1.266 3.357c.986 1.035 2.43 1.628 3.965 1.628h3.018a1.25 1.25 0 0 0 1.246-1.25v-3.282A5.1 5.1 0 0 0 14.93 8.3" })] }) }));
|
|
11
|
-
});
|
|
12
|
-
Msgs2.displayName = 'Msgs2';
|
|
13
|
-
export default Msgs2;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { SVGProps } from 'react';
|
|
3
|
-
export interface NavigationProps extends SVGProps<SVGSVGElement> {
|
|
4
|
-
size?: number | string;
|
|
5
|
-
}
|
|
6
|
-
declare const Navigation: React.ForwardRefExoticComponent<Omit<NavigationProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
-
export default Navigation;
|