@viraui/react 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/avatar/avatar.guide.json +20 -0
- package/dist/button/button.guide.json +20 -0
- package/dist/catalog.json +110 -0
- package/dist/clamp-text/clamp-text.guide.json +23 -0
- package/dist/components/avatar/avatar.css +55 -0
- package/dist/components/avatar/avatar.d.ts +50 -0
- package/dist/components/avatar/avatar.js +17 -0
- package/dist/components/avatar/index.d.ts +2 -0
- package/dist/components/avatar/index.js +1 -0
- package/dist/components/basic-input/basic-input.css +45 -0
- package/dist/components/basic-input/basic-input.d.ts +14 -0
- package/dist/components/basic-input/basic-input.js +17 -0
- package/dist/components/basic-input/field-helper-copy.d.ts +13 -0
- package/dist/components/basic-input/field-helper-copy.js +25 -0
- package/dist/components/basic-input/index.d.ts +2 -0
- package/dist/components/basic-input/index.js +1 -0
- package/dist/components/basic-input/input-control-group.d.ts +26 -0
- package/dist/components/basic-input/input-control-group.js +8 -0
- package/dist/components/button/button.css +156 -0
- package/dist/components/button/button.d.ts +46 -0
- package/dist/components/button/button.js +17 -0
- package/dist/components/button/index.d.ts +2 -0
- package/dist/components/button/index.js +1 -0
- package/dist/components/clamp-text/clamp-text.css +12 -0
- package/dist/components/clamp-text/clamp-text.d.ts +39 -0
- package/dist/components/clamp-text/clamp-text.js +24 -0
- package/dist/components/clamp-text/index.d.ts +2 -0
- package/dist/components/clamp-text/index.js +1 -0
- package/dist/components/elevator/elevator.d.ts +52 -0
- package/dist/components/elevator/elevator.js +29 -0
- package/dist/components/elevator/index.d.ts +2 -0
- package/dist/components/elevator/index.js +1 -0
- package/dist/components/icon/icon.css +7 -0
- package/dist/components/icon/icon.d.ts +9 -0
- package/dist/components/icon/icon.js +11 -0
- package/dist/components/icon/index.d.ts +2 -0
- package/dist/components/icon/index.js +1 -0
- package/dist/components/icon-button/icon-button.d.ts +31 -0
- package/dist/components/icon-button/icon-button.js +3 -0
- package/dist/components/icon-button/index.d.ts +2 -0
- package/dist/components/icon-button/index.js +1 -0
- package/dist/components/index.d.ts +17 -0
- package/dist/components/index.js +17 -0
- package/dist/components/select/index.d.ts +2 -0
- package/dist/components/select/index.js +1 -0
- package/dist/components/select/select-group.d.ts +12 -0
- package/dist/components/select/select-group.js +10 -0
- package/dist/components/select/select-indicator-slot.d.ts +12 -0
- package/dist/components/select/select-indicator-slot.js +11 -0
- package/dist/components/select/select-option.d.ts +16 -0
- package/dist/components/select/select-option.js +11 -0
- package/dist/components/select/select-separator.d.ts +9 -0
- package/dist/components/select/select-separator.js +7 -0
- package/dist/components/select/select.css +194 -0
- package/dist/components/select/select.d.ts +66 -0
- package/dist/components/select/select.js +35 -0
- package/dist/components/skeleton/index.d.ts +2 -0
- package/dist/components/skeleton/index.js +1 -0
- package/dist/components/skeleton/skeleton.css +36 -0
- package/dist/components/skeleton/skeleton.d.ts +51 -0
- package/dist/components/skeleton/skeleton.js +17 -0
- package/dist/components/slider/index.d.ts +2 -0
- package/dist/components/slider/index.js +1 -0
- package/dist/components/slider/slider-control.css +71 -0
- package/dist/components/slider/slider-control.d.ts +8 -0
- package/dist/components/slider/slider-control.js +22 -0
- package/dist/components/slider/slider-utils.d.ts +2 -0
- package/dist/components/slider/slider-utils.js +4 -0
- package/dist/components/slider/slider.css +64 -0
- package/dist/components/slider/slider.d.ts +70 -0
- package/dist/components/slider/slider.js +19 -0
- package/dist/components/spinner/index.d.ts +2 -0
- package/dist/components/spinner/index.js +1 -0
- package/dist/components/spinner/spinner.css +45 -0
- package/dist/components/spinner/spinner.d.ts +17 -0
- package/dist/components/spinner/spinner.js +8 -0
- package/dist/components/stack/index.d.ts +2 -0
- package/dist/components/stack/index.js +1 -0
- package/dist/components/stack/stack.css +57 -0
- package/dist/components/stack/stack.d.ts +104 -0
- package/dist/components/stack/stack.js +38 -0
- package/dist/components/surface/index.d.ts +2 -0
- package/dist/components/surface/index.js +1 -0
- package/dist/components/surface/surface.css +61 -0
- package/dist/components/surface/surface.d.ts +69 -0
- package/dist/components/surface/surface.js +43 -0
- package/dist/components/switch/index.d.ts +2 -0
- package/dist/components/switch/index.js +1 -0
- package/dist/components/switch/switch.css +73 -0
- package/dist/components/switch/switch.d.ts +54 -0
- package/dist/components/switch/switch.js +15 -0
- package/dist/components/text/index.d.ts +2 -0
- package/dist/components/text/index.js +1 -0
- package/dist/components/text/text.css +139 -0
- package/dist/components/text/text.d.ts +127 -0
- package/dist/components/text/text.js +43 -0
- package/dist/components/textarea/index.d.ts +2 -0
- package/dist/components/textarea/index.js +1 -0
- package/dist/components/textarea/textarea.css +45 -0
- package/dist/components/textarea/textarea.d.ts +56 -0
- package/dist/components/textarea/textarea.js +13 -0
- package/dist/components/textfield/index.d.ts +2 -0
- package/dist/components/textfield/index.js +1 -0
- package/dist/components/textfield/textfield.css +87 -0
- package/dist/components/textfield/textfield.d.ts +49 -0
- package/dist/components/textfield/textfield.js +14 -0
- package/dist/components/title/index.d.ts +2 -0
- package/dist/components/title/index.js +1 -0
- package/dist/components/title/title.css +126 -0
- package/dist/components/title/title.d.ts +117 -0
- package/dist/components/title/title.js +41 -0
- package/dist/core/elevation/elevation-types.d.ts +17 -0
- package/dist/core/elevation/elevation-types.js +4 -0
- package/dist/core/elevation/get-elevation-props.d.ts +12 -0
- package/dist/core/elevation/get-elevation-props.js +12 -0
- package/dist/core/props/intrinsic-vira-props.d.ts +23 -0
- package/dist/core/props/intrinsic-vira-props.js +10 -0
- package/dist/core/styles/resolve-axis-padding.d.ts +5 -0
- package/dist/core/styles/resolve-axis-padding.js +17 -0
- package/dist/core/theme/resolve-theme-value.d.ts +5 -0
- package/dist/core/theme/resolve-theme-value.js +7 -0
- package/dist/elevator/elevator.guide.json +23 -0
- package/dist/guides/consumption.json +44 -0
- package/dist/guides/theme-surface.json +61 -0
- package/dist/icon/icon.guide.json +23 -0
- package/dist/icon-button/icon-button.guide.json +20 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/dist/internal-icons/icon-registry.d.ts +248 -0
- package/dist/internal-icons/icon-registry.js +713 -0
- package/dist/internal-icons/icons/duo/AddSection.d.ts +7 -0
- package/dist/internal-icons/icons/duo/AddSection.js +13 -0
- package/dist/internal-icons/icons/duo/AiDeveloper.d.ts +7 -0
- package/dist/internal-icons/icons/duo/AiDeveloper.js +13 -0
- package/dist/internal-icons/icons/duo/AiLoading.d.ts +7 -0
- package/dist/internal-icons/icons/duo/AiLoading.js +13 -0
- package/dist/internal-icons/icons/duo/Album3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Album3.js +13 -0
- package/dist/internal-icons/icons/duo/ArchiveContent2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArchiveContent2.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowDown.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowDown.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowDownLeft.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowDownLeft.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowDownRight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowDownRight.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowLeft.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowLeft.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowRight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowRight.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowRotate.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowRotate.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseCheck.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseCheck.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseSlash.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseXmark.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowRotateAnticlockwiseXmark.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowRotateClockwiseSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowRotateClockwiseSlash.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowUp.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowUp.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowUpLeft.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowUpLeft.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowUpRight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowUpRight.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowsFilter.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowsFilter.js +13 -0
- package/dist/internal-icons/icons/duo/ArrowsToLineY2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ArrowsToLineY2.js +13 -0
- package/dist/internal-icons/icons/duo/Birdhouse.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Birdhouse.js +13 -0
- package/dist/internal-icons/icons/duo/BookmarkList.d.ts +7 -0
- package/dist/internal-icons/icons/duo/BookmarkList.js +13 -0
- package/dist/internal-icons/icons/duo/BookmarkedBook.d.ts +7 -0
- package/dist/internal-icons/icons/duo/BookmarkedBook.js +13 -0
- package/dist/internal-icons/icons/duo/BookmarkedBook2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/BookmarkedBook2.js +13 -0
- package/dist/internal-icons/icons/duo/Box3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Box3.js +13 -0
- package/dist/internal-icons/icons/duo/BoxSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/BoxSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/BoxSparkle2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/BoxSparkle2.js +13 -0
- package/dist/internal-icons/icons/duo/Brochure.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Brochure.js +13 -0
- package/dist/internal-icons/icons/duo/ButtonPlus.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ButtonPlus.js +13 -0
- package/dist/internal-icons/icons/duo/Calculator3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Calculator3.js +13 -0
- package/dist/internal-icons/icons/duo/CaretDown.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CaretDown.js +13 -0
- package/dist/internal-icons/icons/duo/CaretLeft.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CaretLeft.js +13 -0
- package/dist/internal-icons/icons/duo/CaretRight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CaretRight.js +13 -0
- package/dist/internal-icons/icons/duo/CaretUp.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CaretUp.js +13 -0
- package/dist/internal-icons/icons/duo/Chart3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Chart3.js +13 -0
- package/dist/internal-icons/icons/duo/ChartBar.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChartBar.js +13 -0
- package/dist/internal-icons/icons/duo/ChartCandlestick2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChartCandlestick2.js +13 -0
- package/dist/internal-icons/icons/duo/ChatImage.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChatImage.js +13 -0
- package/dist/internal-icons/icons/duo/ChatInfo.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChatInfo.js +13 -0
- package/dist/internal-icons/icons/duo/ChatTask.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChatTask.js +13 -0
- package/dist/internal-icons/icons/duo/Check.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Check.js +13 -0
- package/dist/internal-icons/icons/duo/CheckBoxArrow.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CheckBoxArrow.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronDown.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronDown.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronExpandY.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronExpandY.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronLeft.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronLeft.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronLeftToLine.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronLeftToLine.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronRight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronRight.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronRightToLine.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronRightToLine.js +13 -0
- package/dist/internal-icons/icons/duo/ChevronUp.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ChevronUp.js +13 -0
- package/dist/internal-icons/icons/duo/Child.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Child.js +13 -0
- package/dist/internal-icons/icons/duo/CircleCoinIn.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleCoinIn.js +13 -0
- package/dist/internal-icons/icons/duo/CircleCoinOut.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleCoinOut.js +13 -0
- package/dist/internal-icons/icons/duo/CircleCoinPlus.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleCoinPlus.js +13 -0
- package/dist/internal-icons/icons/duo/CircleConversion.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleConversion.js +13 -0
- package/dist/internal-icons/icons/duo/CircleCross.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleCross.js +13 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowDown.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowDown.js +13 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowLeft.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowLeft.js +13 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowRight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowRight.js +13 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowUp.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleHalfArrowUp.js +13 -0
- package/dist/internal-icons/icons/duo/CircleHalfDottedChart2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CircleHalfDottedChart2.js +13 -0
- package/dist/internal-icons/icons/duo/ClockTime.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ClockTime.js +13 -0
- package/dist/internal-icons/icons/duo/CloneDashed3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CloneDashed3.js +13 -0
- package/dist/internal-icons/icons/duo/CloneImageDashed.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CloneImageDashed.js +13 -0
- package/dist/internal-icons/icons/duo/CloneVideoDashed.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CloneVideoDashed.js +13 -0
- package/dist/internal-icons/icons/duo/CloudeCode.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CloudeCode.js +13 -0
- package/dist/internal-icons/icons/duo/CoinStack.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CoinStack.js +13 -0
- package/dist/internal-icons/icons/duo/ConditionalLogic.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ConditionalLogic.js +13 -0
- package/dist/internal-icons/icons/duo/ConnectPlus.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ConnectPlus.js +13 -0
- package/dist/internal-icons/icons/duo/Connection3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Connection3.js +13 -0
- package/dist/internal-icons/icons/duo/CopyDelete.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CopyDelete.js +13 -0
- package/dist/internal-icons/icons/duo/CopyId.d.ts +7 -0
- package/dist/internal-icons/icons/duo/CopyId.js +13 -0
- package/dist/internal-icons/icons/duo/Deaf.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Deaf.js +13 -0
- package/dist/internal-icons/icons/duo/DependencyLink.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DependencyLink.js +13 -0
- package/dist/internal-icons/icons/duo/DesktopDock.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DesktopDock.js +13 -0
- package/dist/internal-icons/icons/duo/DiamondSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DiamondSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/DocumentScan.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DocumentScan.js +13 -0
- package/dist/internal-icons/icons/duo/Dog2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Dog2.js +13 -0
- package/dist/internal-icons/icons/duo/DogLeash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DogLeash.js +13 -0
- package/dist/internal-icons/icons/duo/DogSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DogSlash.js +13 -0
- package/dist/internal-icons/icons/duo/DotFormation.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DotFormation.js +13 -0
- package/dist/internal-icons/icons/duo/DrawFinger.d.ts +7 -0
- package/dist/internal-icons/icons/duo/DrawFinger.js +13 -0
- package/dist/internal-icons/icons/duo/Ear.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Ear.js +13 -0
- package/dist/internal-icons/icons/duo/EarSound.d.ts +7 -0
- package/dist/internal-icons/icons/duo/EarSound.js +13 -0
- package/dist/internal-icons/icons/duo/Embed.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Embed.js +13 -0
- package/dist/internal-icons/icons/duo/EnterDoor.d.ts +7 -0
- package/dist/internal-icons/icons/duo/EnterDoor.js +13 -0
- package/dist/internal-icons/icons/duo/EnterHome.d.ts +7 -0
- package/dist/internal-icons/icons/duo/EnterHome.js +13 -0
- package/dist/internal-icons/icons/duo/ExitDoor.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ExitDoor.js +13 -0
- package/dist/internal-icons/icons/duo/Export2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Export2.js +13 -0
- package/dist/internal-icons/icons/duo/EyeSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/EyeSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/FaceRobot.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FaceRobot.js +13 -0
- package/dist/internal-icons/icons/duo/FaceRobot2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FaceRobot2.js +13 -0
- package/dist/internal-icons/icons/duo/FaceRobot3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FaceRobot3.js +13 -0
- package/dist/internal-icons/icons/duo/FerrisWheel.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FerrisWheel.js +13 -0
- package/dist/internal-icons/icons/duo/FileExport.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FileExport.js +13 -0
- package/dist/internal-icons/icons/duo/FlagMenu.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FlagMenu.js +13 -0
- package/dist/internal-icons/icons/duo/FocusCenter.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FocusCenter.js +13 -0
- package/dist/internal-icons/icons/duo/FoodOrder.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FoodOrder.js +13 -0
- package/dist/internal-icons/icons/duo/FuelCan.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FuelCan.js +13 -0
- package/dist/internal-icons/icons/duo/FuelCan2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/FuelCan2.js +13 -0
- package/dist/internal-icons/icons/duo/Gear3Sparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Gear3Sparkle.js +13 -0
- package/dist/internal-icons/icons/duo/GridSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/GridSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/HandHoldingGlobe.d.ts +7 -0
- package/dist/internal-icons/icons/duo/HandHoldingGlobe.js +13 -0
- package/dist/internal-icons/icons/duo/Handshake2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Handshake2.js +13 -0
- package/dist/internal-icons/icons/duo/Haptic.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Haptic.js +13 -0
- package/dist/internal-icons/icons/duo/HelpChat.d.ts +7 -0
- package/dist/internal-icons/icons/duo/HelpChat.js +13 -0
- package/dist/internal-icons/icons/duo/HexagonSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/HexagonSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/Hiking.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Hiking.js +13 -0
- package/dist/internal-icons/icons/duo/History2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/History2.js +13 -0
- package/dist/internal-icons/icons/duo/HorseHead.d.ts +7 -0
- package/dist/internal-icons/icons/duo/HorseHead.js +13 -0
- package/dist/internal-icons/icons/duo/HouseDollarSign.d.ts +7 -0
- package/dist/internal-icons/icons/duo/HouseDollarSign.js +13 -0
- package/dist/internal-icons/icons/duo/HouseMinus2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/HouseMinus2.js +13 -0
- package/dist/internal-icons/icons/duo/Images3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Images3.js +13 -0
- package/dist/internal-icons/icons/duo/Img4k.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Img4k.js +13 -0
- package/dist/internal-icons/icons/duo/InsertCrypto.d.ts +7 -0
- package/dist/internal-icons/icons/duo/InsertCrypto.js +13 -0
- package/dist/internal-icons/icons/duo/InsertDollar.d.ts +7 -0
- package/dist/internal-icons/icons/duo/InsertDollar.js +13 -0
- package/dist/internal-icons/icons/duo/InstantMoney.d.ts +7 -0
- package/dist/internal-icons/icons/duo/InstantMoney.js +13 -0
- package/dist/internal-icons/icons/duo/InvoiceIn.d.ts +7 -0
- package/dist/internal-icons/icons/duo/InvoiceIn.js +13 -0
- package/dist/internal-icons/icons/duo/InwardFlow.d.ts +7 -0
- package/dist/internal-icons/icons/duo/InwardFlow.js +13 -0
- package/dist/internal-icons/icons/duo/JoinedHands.d.ts +7 -0
- package/dist/internal-icons/icons/duo/JoinedHands.js +13 -0
- package/dist/internal-icons/icons/duo/LawShield.d.ts +7 -0
- package/dist/internal-icons/icons/duo/LawShield.js +13 -0
- package/dist/internal-icons/icons/duo/Lectern.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Lectern.js +13 -0
- package/dist/internal-icons/icons/duo/Lectern2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Lectern2.js +13 -0
- package/dist/internal-icons/icons/duo/LightSpark.d.ts +7 -0
- package/dist/internal-icons/icons/duo/LightSpark.js +13 -0
- package/dist/internal-icons/icons/duo/LightSpark2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/LightSpark2.js +13 -0
- package/dist/internal-icons/icons/duo/ListExport.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ListExport.js +13 -0
- package/dist/internal-icons/icons/duo/ListFavs3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ListFavs3.js +13 -0
- package/dist/internal-icons/icons/duo/ListFavs4.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ListFavs4.js +13 -0
- package/dist/internal-icons/icons/duo/LoadingStatus.d.ts +7 -0
- package/dist/internal-icons/icons/duo/LoadingStatus.js +13 -0
- package/dist/internal-icons/icons/duo/LoadingStatus2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/LoadingStatus2.js +13 -0
- package/dist/internal-icons/icons/duo/LockedChat.d.ts +7 -0
- package/dist/internal-icons/icons/duo/LockedChat.js +13 -0
- package/dist/internal-icons/icons/duo/MagicHat.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MagicHat.js +13 -0
- package/dist/internal-icons/icons/duo/MagicRabbit.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MagicRabbit.js +13 -0
- package/dist/internal-icons/icons/duo/MagnifierSparkle2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MagnifierSparkle2.js +13 -0
- package/dist/internal-icons/icons/duo/MediaLibrary2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MediaLibrary2.js +13 -0
- package/dist/internal-icons/icons/duo/Membership.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Membership.js +13 -0
- package/dist/internal-icons/icons/duo/Menu4.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Menu4.js +13 -0
- package/dist/internal-icons/icons/duo/MilitaryMedal.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MilitaryMedal.js +13 -0
- package/dist/internal-icons/icons/duo/MobileCircuit.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MobileCircuit.js +13 -0
- package/dist/internal-icons/icons/duo/MoneyRefund.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MoneyRefund.js +13 -0
- package/dist/internal-icons/icons/duo/MoneyRefund2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MoneyRefund2.js +13 -0
- package/dist/internal-icons/icons/duo/MotionAlongPath.d.ts +7 -0
- package/dist/internal-icons/icons/duo/MotionAlongPath.js +13 -0
- package/dist/internal-icons/icons/duo/Msgs2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Msgs2.js +13 -0
- package/dist/internal-icons/icons/duo/Navigation.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Navigation.js +13 -0
- package/dist/internal-icons/icons/duo/NavigationHorizontal.d.ts +7 -0
- package/dist/internal-icons/icons/duo/NavigationHorizontal.js +13 -0
- package/dist/internal-icons/icons/duo/NavigationVertical.d.ts +7 -0
- package/dist/internal-icons/icons/duo/NavigationVertical.js +13 -0
- package/dist/internal-icons/icons/duo/ObjectSelection.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ObjectSelection.js +13 -0
- package/dist/internal-icons/icons/duo/OfficeUser.d.ts +7 -0
- package/dist/internal-icons/icons/duo/OfficeUser.js +13 -0
- package/dist/internal-icons/icons/duo/OpenExternal.d.ts +7 -0
- package/dist/internal-icons/icons/duo/OpenExternal.js +13 -0
- package/dist/internal-icons/icons/duo/OrbitSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/OrbitSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/OutwardFlow.d.ts +7 -0
- package/dist/internal-icons/icons/duo/OutwardFlow.js +13 -0
- package/dist/internal-icons/icons/duo/PaperPlaneFast.d.ts +7 -0
- package/dist/internal-icons/icons/duo/PaperPlaneFast.js +13 -0
- package/dist/internal-icons/icons/duo/Parachute.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Parachute.js +13 -0
- package/dist/internal-icons/icons/duo/Paw.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Paw.js +13 -0
- package/dist/internal-icons/icons/duo/Peace.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Peace.js +13 -0
- package/dist/internal-icons/icons/duo/PicnicTable.d.ts +7 -0
- package/dist/internal-icons/icons/duo/PicnicTable.js +13 -0
- package/dist/internal-icons/icons/duo/Pillow.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Pillow.js +13 -0
- package/dist/internal-icons/icons/duo/Playground.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Playground.js +13 -0
- package/dist/internal-icons/icons/duo/Playlist4.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Playlist4.js +13 -0
- package/dist/internal-icons/icons/duo/Plug3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Plug3.js +13 -0
- package/dist/internal-icons/icons/duo/Plug3Sparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Plug3Sparkle.js +13 -0
- package/dist/internal-icons/icons/duo/PlugOff.d.ts +7 -0
- package/dist/internal-icons/icons/duo/PlugOff.js +13 -0
- package/dist/internal-icons/icons/duo/PlugSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/PlugSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/PopEffect.d.ts +7 -0
- package/dist/internal-icons/icons/duo/PopEffect.js +13 -0
- package/dist/internal-icons/icons/duo/ProfileAnalytics.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ProfileAnalytics.js +13 -0
- package/dist/internal-icons/icons/duo/ProfileBasic.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ProfileBasic.js +13 -0
- package/dist/internal-icons/icons/duo/ProgressIndicator2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ProgressIndicator2.js +13 -0
- package/dist/internal-icons/icons/duo/QuickActions.d.ts +7 -0
- package/dist/internal-icons/icons/duo/QuickActions.js +13 -0
- package/dist/internal-icons/icons/duo/QuickTimer.d.ts +7 -0
- package/dist/internal-icons/icons/duo/QuickTimer.js +13 -0
- package/dist/internal-icons/icons/duo/Rabbit.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Rabbit.js +13 -0
- package/dist/internal-icons/icons/duo/Receipt3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Receipt3.js +13 -0
- package/dist/internal-icons/icons/duo/Receipt4.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Receipt4.js +13 -0
- package/dist/internal-icons/icons/duo/Redo2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Redo2.js +13 -0
- package/dist/internal-icons/icons/duo/Redo3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Redo3.js +13 -0
- package/dist/internal-icons/icons/duo/Refresh3AnticlockwiseSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Refresh3AnticlockwiseSlash.js +13 -0
- package/dist/internal-icons/icons/duo/Refresh3ClockwiseSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Refresh3ClockwiseSlash.js +13 -0
- package/dist/internal-icons/icons/duo/RefreshAnticlockwise.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RefreshAnticlockwise.js +13 -0
- package/dist/internal-icons/icons/duo/RefreshAnticlockwiseSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RefreshAnticlockwiseSlash.js +13 -0
- package/dist/internal-icons/icons/duo/RefreshClockwiseSlash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RefreshClockwiseSlash.js +13 -0
- package/dist/internal-icons/icons/duo/Refrigerator.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Refrigerator.js +13 -0
- package/dist/internal-icons/icons/duo/RemoteControl.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RemoteControl.js +13 -0
- package/dist/internal-icons/icons/duo/RemoteControl2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RemoteControl2.js +13 -0
- package/dist/internal-icons/icons/duo/ReportFile.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ReportFile.js +13 -0
- package/dist/internal-icons/icons/duo/Reposition.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Reposition.js +13 -0
- package/dist/internal-icons/icons/duo/Rerouting.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Rerouting.js +13 -0
- package/dist/internal-icons/icons/duo/Robot2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Robot2.js +13 -0
- package/dist/internal-icons/icons/duo/Robot3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Robot3.js +13 -0
- package/dist/internal-icons/icons/duo/Robot4.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Robot4.js +13 -0
- package/dist/internal-icons/icons/duo/RockOn.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RockOn.js +13 -0
- package/dist/internal-icons/icons/duo/RopeStanchions.d.ts +7 -0
- package/dist/internal-icons/icons/duo/RopeStanchions.js +13 -0
- package/dist/internal-icons/icons/duo/Rotation3602.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Rotation3602.js +13 -0
- package/dist/internal-icons/icons/duo/SavedItems2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SavedItems2.js +13 -0
- package/dist/internal-icons/icons/duo/ScaleImg4k.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ScaleImg4k.js +13 -0
- package/dist/internal-icons/icons/duo/ScanImage.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ScanImage.js +13 -0
- package/dist/internal-icons/icons/duo/ScissorsSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ScissorsSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/Seatbelt.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Seatbelt.js +13 -0
- package/dist/internal-icons/icons/duo/ShakaHand.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ShakaHand.js +13 -0
- package/dist/internal-icons/icons/duo/ShapeRectangle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ShapeRectangle.js +13 -0
- package/dist/internal-icons/icons/duo/Shovel.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Shovel.js +13 -0
- package/dist/internal-icons/icons/duo/ShuffleSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/ShuffleSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/SideProfileQuestion.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SideProfileQuestion.js +13 -0
- package/dist/internal-icons/icons/duo/SideProfileSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SideProfileSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/SidebarEdit.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SidebarEdit.js +13 -0
- package/dist/internal-icons/icons/duo/SlashCircle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SlashCircle.js +13 -0
- package/dist/internal-icons/icons/duo/Sliders4.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Sliders4.js +13 -0
- package/dist/internal-icons/icons/duo/Snail.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Snail.js +13 -0
- package/dist/internal-icons/icons/duo/Spiral.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Spiral.js +13 -0
- package/dist/internal-icons/icons/duo/SplitView.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SplitView.js +13 -0
- package/dist/internal-icons/icons/duo/SquareDashedSearchSparkle.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SquareDashedSearchSparkle.js +13 -0
- package/dist/internal-icons/icons/duo/SquareDashedText.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SquareDashedText.js +13 -0
- package/dist/internal-icons/icons/duo/SquarePath.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SquarePath.js +13 -0
- package/dist/internal-icons/icons/duo/Star2Slash.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Star2Slash.js +13 -0
- package/dist/internal-icons/icons/duo/StopSign.d.ts +7 -0
- package/dist/internal-icons/icons/duo/StopSign.js +13 -0
- package/dist/internal-icons/icons/duo/StopwatchBolt.d.ts +7 -0
- package/dist/internal-icons/icons/duo/StopwatchBolt.js +13 -0
- package/dist/internal-icons/icons/duo/SummitFlag.d.ts +7 -0
- package/dist/internal-icons/icons/duo/SummitFlag.js +13 -0
- package/dist/internal-icons/icons/duo/Sunrise2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Sunrise2.js +13 -0
- package/dist/internal-icons/icons/duo/Task.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Task.js +13 -0
- package/dist/internal-icons/icons/duo/Task2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Task2.js +13 -0
- package/dist/internal-icons/icons/duo/TaskDebug.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TaskDebug.js +13 -0
- package/dist/internal-icons/icons/duo/TaskSearch.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TaskSearch.js +13 -0
- package/dist/internal-icons/icons/duo/Teepee.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Teepee.js +13 -0
- package/dist/internal-icons/icons/duo/TextAdjust.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TextAdjust.js +13 -0
- package/dist/internal-icons/icons/duo/TheatreMask.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TheatreMask.js +13 -0
- package/dist/internal-icons/icons/duo/TheatreMask2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TheatreMask2.js +13 -0
- package/dist/internal-icons/icons/duo/TimerProgress.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TimerProgress.js +13 -0
- package/dist/internal-icons/icons/duo/TimerProgress2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TimerProgress2.js +13 -0
- package/dist/internal-icons/icons/duo/TransactionSplit.d.ts +7 -0
- package/dist/internal-icons/icons/duo/TransactionSplit.js +13 -0
- package/dist/internal-icons/icons/duo/Undo2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Undo2.js +13 -0
- package/dist/internal-icons/icons/duo/Undo3.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Undo3.js +13 -0
- package/dist/internal-icons/icons/duo/UnicornHead.d.ts +7 -0
- package/dist/internal-icons/icons/duo/UnicornHead.js +13 -0
- package/dist/internal-icons/icons/duo/UserContact.d.ts +7 -0
- package/dist/internal-icons/icons/duo/UserContact.js +13 -0
- package/dist/internal-icons/icons/duo/UserVoice2.d.ts +7 -0
- package/dist/internal-icons/icons/duo/UserVoice2.js +13 -0
- package/dist/internal-icons/icons/duo/VipBadge.d.ts +7 -0
- package/dist/internal-icons/icons/duo/VipBadge.js +13 -0
- package/dist/internal-icons/icons/duo/VoiceCaption.d.ts +7 -0
- package/dist/internal-icons/icons/duo/VoiceCaption.js +13 -0
- package/dist/internal-icons/icons/duo/WalletCoins.d.ts +7 -0
- package/dist/internal-icons/icons/duo/WalletCoins.js +13 -0
- package/dist/internal-icons/icons/duo/Weight.d.ts +7 -0
- package/dist/internal-icons/icons/duo/Weight.js +13 -0
- package/dist/internal-icons/icons/duo/index.d.ts +245 -0
- package/dist/internal-icons/icons/duo/index.js +245 -0
- package/dist/preflight.css +1 -0
- package/dist/select/select.guide.json +17 -0
- package/dist/skeleton/skeleton.guide.json +23 -0
- package/dist/slider/slider.guide.json +23 -0
- package/dist/spinner/spinner.guide.json +23 -0
- package/dist/stack/stack.guide.json +20 -0
- package/dist/surface/surface.guide.json +23 -0
- package/dist/switch/switch.guide.json +23 -0
- package/dist/text/text.guide.json +20 -0
- package/dist/textarea/textarea.guide.json +17 -0
- package/dist/textfield/textfield.guide.json +20 -0
- package/dist/title/title.guide.json +20 -0
- package/package.json +64 -0
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SVG Components Index
|
|
3
|
+
* Generated by svger-cli
|
|
4
|
+
*
|
|
5
|
+
* Import individual components:
|
|
6
|
+
* import { AddSection } from './components';
|
|
7
|
+
*
|
|
8
|
+
* Import all components:
|
|
9
|
+
* import * as Icons from './components';
|
|
10
|
+
*/
|
|
11
|
+
export { default as AddSection } from './AddSection';
|
|
12
|
+
export { default as AiDeveloper } from './AiDeveloper';
|
|
13
|
+
export { default as AiLoading } from './AiLoading';
|
|
14
|
+
export { default as Album3 } from './Album3';
|
|
15
|
+
export { default as ArchiveContent2 } from './ArchiveContent2';
|
|
16
|
+
export { default as ArrowDown } from './ArrowDown';
|
|
17
|
+
export { default as ArrowDownLeft } from './ArrowDownLeft';
|
|
18
|
+
export { default as ArrowDownRight } from './ArrowDownRight';
|
|
19
|
+
export { default as ArrowLeft } from './ArrowLeft';
|
|
20
|
+
export { default as ArrowRight } from './ArrowRight';
|
|
21
|
+
export { default as ArrowRotate } from './ArrowRotate';
|
|
22
|
+
export { default as ArrowRotateAnticlockwiseCheck } from './ArrowRotateAnticlockwiseCheck';
|
|
23
|
+
export { default as ArrowRotateAnticlockwiseSlash } from './ArrowRotateAnticlockwiseSlash';
|
|
24
|
+
export { default as ArrowRotateAnticlockwiseXmark } from './ArrowRotateAnticlockwiseXmark';
|
|
25
|
+
export { default as ArrowRotateClockwiseSlash } from './ArrowRotateClockwiseSlash';
|
|
26
|
+
export { default as ArrowUp } from './ArrowUp';
|
|
27
|
+
export { default as ArrowUpLeft } from './ArrowUpLeft';
|
|
28
|
+
export { default as ArrowUpRight } from './ArrowUpRight';
|
|
29
|
+
export { default as ArrowsFilter } from './ArrowsFilter';
|
|
30
|
+
export { default as ArrowsToLineY2 } from './ArrowsToLineY2';
|
|
31
|
+
export { default as Birdhouse } from './Birdhouse';
|
|
32
|
+
export { default as BookmarkList } from './BookmarkList';
|
|
33
|
+
export { default as BookmarkedBook } from './BookmarkedBook';
|
|
34
|
+
export { default as BookmarkedBook2 } from './BookmarkedBook2';
|
|
35
|
+
export { default as Box3 } from './Box3';
|
|
36
|
+
export { default as BoxSparkle } from './BoxSparkle';
|
|
37
|
+
export { default as BoxSparkle2 } from './BoxSparkle2';
|
|
38
|
+
export { default as Brochure } from './Brochure';
|
|
39
|
+
export { default as ButtonPlus } from './ButtonPlus';
|
|
40
|
+
export { default as Calculator3 } from './Calculator3';
|
|
41
|
+
export { default as CaretDown } from './CaretDown';
|
|
42
|
+
export { default as CaretLeft } from './CaretLeft';
|
|
43
|
+
export { default as CaretRight } from './CaretRight';
|
|
44
|
+
export { default as CaretUp } from './CaretUp';
|
|
45
|
+
export { default as Chart3 } from './Chart3';
|
|
46
|
+
export { default as ChartBar } from './ChartBar';
|
|
47
|
+
export { default as ChartCandlestick2 } from './ChartCandlestick2';
|
|
48
|
+
export { default as ChatImage } from './ChatImage';
|
|
49
|
+
export { default as ChatInfo } from './ChatInfo';
|
|
50
|
+
export { default as ChatTask } from './ChatTask';
|
|
51
|
+
export { default as Check } from './Check';
|
|
52
|
+
export { default as CheckBoxArrow } from './CheckBoxArrow';
|
|
53
|
+
export { default as ChevronDown } from './ChevronDown';
|
|
54
|
+
export { default as ChevronExpandY } from './ChevronExpandY';
|
|
55
|
+
export { default as ChevronLeft } from './ChevronLeft';
|
|
56
|
+
export { default as ChevronLeftToLine } from './ChevronLeftToLine';
|
|
57
|
+
export { default as ChevronRight } from './ChevronRight';
|
|
58
|
+
export { default as ChevronRightToLine } from './ChevronRightToLine';
|
|
59
|
+
export { default as ChevronUp } from './ChevronUp';
|
|
60
|
+
export { default as Child } from './Child';
|
|
61
|
+
export { default as CircleCoinIn } from './CircleCoinIn';
|
|
62
|
+
export { default as CircleCoinOut } from './CircleCoinOut';
|
|
63
|
+
export { default as CircleCoinPlus } from './CircleCoinPlus';
|
|
64
|
+
export { default as CircleConversion } from './CircleConversion';
|
|
65
|
+
export { default as CircleCross } from './CircleCross';
|
|
66
|
+
export { default as CircleHalfArrowDown } from './CircleHalfArrowDown';
|
|
67
|
+
export { default as CircleHalfArrowLeft } from './CircleHalfArrowLeft';
|
|
68
|
+
export { default as CircleHalfArrowRight } from './CircleHalfArrowRight';
|
|
69
|
+
export { default as CircleHalfArrowUp } from './CircleHalfArrowUp';
|
|
70
|
+
export { default as CircleHalfDottedChart2 } from './CircleHalfDottedChart2';
|
|
71
|
+
export { default as ClockTime } from './ClockTime';
|
|
72
|
+
export { default as CloneDashed3 } from './CloneDashed3';
|
|
73
|
+
export { default as CloneImageDashed } from './CloneImageDashed';
|
|
74
|
+
export { default as CloneVideoDashed } from './CloneVideoDashed';
|
|
75
|
+
export { default as CloudeCode } from './CloudeCode';
|
|
76
|
+
export { default as CoinStack } from './CoinStack';
|
|
77
|
+
export { default as ConditionalLogic } from './ConditionalLogic';
|
|
78
|
+
export { default as ConnectPlus } from './ConnectPlus';
|
|
79
|
+
export { default as Connection3 } from './Connection3';
|
|
80
|
+
export { default as CopyDelete } from './CopyDelete';
|
|
81
|
+
export { default as CopyId } from './CopyId';
|
|
82
|
+
export { default as Deaf } from './Deaf';
|
|
83
|
+
export { default as DependencyLink } from './DependencyLink';
|
|
84
|
+
export { default as DesktopDock } from './DesktopDock';
|
|
85
|
+
export { default as DiamondSparkle } from './DiamondSparkle';
|
|
86
|
+
export { default as DocumentScan } from './DocumentScan';
|
|
87
|
+
export { default as Dog2 } from './Dog2';
|
|
88
|
+
export { default as DogLeash } from './DogLeash';
|
|
89
|
+
export { default as DogSlash } from './DogSlash';
|
|
90
|
+
export { default as DotFormation } from './DotFormation';
|
|
91
|
+
export { default as DrawFinger } from './DrawFinger';
|
|
92
|
+
export { default as Ear } from './Ear';
|
|
93
|
+
export { default as EarSound } from './EarSound';
|
|
94
|
+
export { default as Embed } from './Embed';
|
|
95
|
+
export { default as EnterDoor } from './EnterDoor';
|
|
96
|
+
export { default as EnterHome } from './EnterHome';
|
|
97
|
+
export { default as ExitDoor } from './ExitDoor';
|
|
98
|
+
export { default as Export2 } from './Export2';
|
|
99
|
+
export { default as EyeSparkle } from './EyeSparkle';
|
|
100
|
+
export { default as FaceRobot } from './FaceRobot';
|
|
101
|
+
export { default as FaceRobot2 } from './FaceRobot2';
|
|
102
|
+
export { default as FaceRobot3 } from './FaceRobot3';
|
|
103
|
+
export { default as FerrisWheel } from './FerrisWheel';
|
|
104
|
+
export { default as FileExport } from './FileExport';
|
|
105
|
+
export { default as FlagMenu } from './FlagMenu';
|
|
106
|
+
export { default as FocusCenter } from './FocusCenter';
|
|
107
|
+
export { default as FoodOrder } from './FoodOrder';
|
|
108
|
+
export { default as FuelCan } from './FuelCan';
|
|
109
|
+
export { default as FuelCan2 } from './FuelCan2';
|
|
110
|
+
export { default as Gear3Sparkle } from './Gear3Sparkle';
|
|
111
|
+
export { default as GridSparkle } from './GridSparkle';
|
|
112
|
+
export { default as HandHoldingGlobe } from './HandHoldingGlobe';
|
|
113
|
+
export { default as Handshake2 } from './Handshake2';
|
|
114
|
+
export { default as Haptic } from './Haptic';
|
|
115
|
+
export { default as HelpChat } from './HelpChat';
|
|
116
|
+
export { default as HexagonSparkle } from './HexagonSparkle';
|
|
117
|
+
export { default as Hiking } from './Hiking';
|
|
118
|
+
export { default as History2 } from './History2';
|
|
119
|
+
export { default as HorseHead } from './HorseHead';
|
|
120
|
+
export { default as HouseDollarSign } from './HouseDollarSign';
|
|
121
|
+
export { default as HouseMinus2 } from './HouseMinus2';
|
|
122
|
+
export { default as Images3 } from './Images3';
|
|
123
|
+
export { default as Img4k } from './Img4k';
|
|
124
|
+
export { default as InsertCrypto } from './InsertCrypto';
|
|
125
|
+
export { default as InsertDollar } from './InsertDollar';
|
|
126
|
+
export { default as InstantMoney } from './InstantMoney';
|
|
127
|
+
export { default as InvoiceIn } from './InvoiceIn';
|
|
128
|
+
export { default as InwardFlow } from './InwardFlow';
|
|
129
|
+
export { default as JoinedHands } from './JoinedHands';
|
|
130
|
+
export { default as LawShield } from './LawShield';
|
|
131
|
+
export { default as Lectern } from './Lectern';
|
|
132
|
+
export { default as Lectern2 } from './Lectern2';
|
|
133
|
+
export { default as LightSpark } from './LightSpark';
|
|
134
|
+
export { default as LightSpark2 } from './LightSpark2';
|
|
135
|
+
export { default as ListExport } from './ListExport';
|
|
136
|
+
export { default as ListFavs3 } from './ListFavs3';
|
|
137
|
+
export { default as ListFavs4 } from './ListFavs4';
|
|
138
|
+
export { default as LoadingStatus } from './LoadingStatus';
|
|
139
|
+
export { default as LoadingStatus2 } from './LoadingStatus2';
|
|
140
|
+
export { default as LockedChat } from './LockedChat';
|
|
141
|
+
export { default as MagicHat } from './MagicHat';
|
|
142
|
+
export { default as MagicRabbit } from './MagicRabbit';
|
|
143
|
+
export { default as MagnifierSparkle2 } from './MagnifierSparkle2';
|
|
144
|
+
export { default as MediaLibrary2 } from './MediaLibrary2';
|
|
145
|
+
export { default as Membership } from './Membership';
|
|
146
|
+
export { default as Menu4 } from './Menu4';
|
|
147
|
+
export { default as MilitaryMedal } from './MilitaryMedal';
|
|
148
|
+
export { default as MobileCircuit } from './MobileCircuit';
|
|
149
|
+
export { default as MoneyRefund } from './MoneyRefund';
|
|
150
|
+
export { default as MoneyRefund2 } from './MoneyRefund2';
|
|
151
|
+
export { default as MotionAlongPath } from './MotionAlongPath';
|
|
152
|
+
export { default as Msgs2 } from './Msgs2';
|
|
153
|
+
export { default as Navigation } from './Navigation';
|
|
154
|
+
export { default as NavigationHorizontal } from './NavigationHorizontal';
|
|
155
|
+
export { default as NavigationVertical } from './NavigationVertical';
|
|
156
|
+
export { default as ObjectSelection } from './ObjectSelection';
|
|
157
|
+
export { default as OfficeUser } from './OfficeUser';
|
|
158
|
+
export { default as OpenExternal } from './OpenExternal';
|
|
159
|
+
export { default as OrbitSparkle } from './OrbitSparkle';
|
|
160
|
+
export { default as OutwardFlow } from './OutwardFlow';
|
|
161
|
+
export { default as PaperPlaneFast } from './PaperPlaneFast';
|
|
162
|
+
export { default as Parachute } from './Parachute';
|
|
163
|
+
export { default as Paw } from './Paw';
|
|
164
|
+
export { default as Peace } from './Peace';
|
|
165
|
+
export { default as PicnicTable } from './PicnicTable';
|
|
166
|
+
export { default as Pillow } from './Pillow';
|
|
167
|
+
export { default as Playground } from './Playground';
|
|
168
|
+
export { default as Playlist4 } from './Playlist4';
|
|
169
|
+
export { default as Plug3 } from './Plug3';
|
|
170
|
+
export { default as Plug3Sparkle } from './Plug3Sparkle';
|
|
171
|
+
export { default as PlugOff } from './PlugOff';
|
|
172
|
+
export { default as PlugSparkle } from './PlugSparkle';
|
|
173
|
+
export { default as PopEffect } from './PopEffect';
|
|
174
|
+
export { default as ProfileAnalytics } from './ProfileAnalytics';
|
|
175
|
+
export { default as ProfileBasic } from './ProfileBasic';
|
|
176
|
+
export { default as ProgressIndicator2 } from './ProgressIndicator2';
|
|
177
|
+
export { default as QuickActions } from './QuickActions';
|
|
178
|
+
export { default as QuickTimer } from './QuickTimer';
|
|
179
|
+
export { default as Rabbit } from './Rabbit';
|
|
180
|
+
export { default as Receipt3 } from './Receipt3';
|
|
181
|
+
export { default as Receipt4 } from './Receipt4';
|
|
182
|
+
export { default as Redo2 } from './Redo2';
|
|
183
|
+
export { default as Redo3 } from './Redo3';
|
|
184
|
+
export { default as Refresh3AnticlockwiseSlash } from './Refresh3AnticlockwiseSlash';
|
|
185
|
+
export { default as Refresh3ClockwiseSlash } from './Refresh3ClockwiseSlash';
|
|
186
|
+
export { default as RefreshAnticlockwise } from './RefreshAnticlockwise';
|
|
187
|
+
export { default as RefreshAnticlockwiseSlash } from './RefreshAnticlockwiseSlash';
|
|
188
|
+
export { default as RefreshClockwiseSlash } from './RefreshClockwiseSlash';
|
|
189
|
+
export { default as Refrigerator } from './Refrigerator';
|
|
190
|
+
export { default as RemoteControl } from './RemoteControl';
|
|
191
|
+
export { default as RemoteControl2 } from './RemoteControl2';
|
|
192
|
+
export { default as ReportFile } from './ReportFile';
|
|
193
|
+
export { default as Reposition } from './Reposition';
|
|
194
|
+
export { default as Rerouting } from './Rerouting';
|
|
195
|
+
export { default as Robot2 } from './Robot2';
|
|
196
|
+
export { default as Robot3 } from './Robot3';
|
|
197
|
+
export { default as Robot4 } from './Robot4';
|
|
198
|
+
export { default as RockOn } from './RockOn';
|
|
199
|
+
export { default as RopeStanchions } from './RopeStanchions';
|
|
200
|
+
export { default as Rotation3602 } from './Rotation3602';
|
|
201
|
+
export { default as SavedItems2 } from './SavedItems2';
|
|
202
|
+
export { default as ScaleImg4k } from './ScaleImg4k';
|
|
203
|
+
export { default as ScanImage } from './ScanImage';
|
|
204
|
+
export { default as ScissorsSparkle } from './ScissorsSparkle';
|
|
205
|
+
export { default as Seatbelt } from './Seatbelt';
|
|
206
|
+
export { default as ShakaHand } from './ShakaHand';
|
|
207
|
+
export { default as ShapeRectangle } from './ShapeRectangle';
|
|
208
|
+
export { default as Shovel } from './Shovel';
|
|
209
|
+
export { default as ShuffleSparkle } from './ShuffleSparkle';
|
|
210
|
+
export { default as SideProfileQuestion } from './SideProfileQuestion';
|
|
211
|
+
export { default as SideProfileSparkle } from './SideProfileSparkle';
|
|
212
|
+
export { default as SidebarEdit } from './SidebarEdit';
|
|
213
|
+
export { default as SlashCircle } from './SlashCircle';
|
|
214
|
+
export { default as Sliders4 } from './Sliders4';
|
|
215
|
+
export { default as Snail } from './Snail';
|
|
216
|
+
export { default as Spiral } from './Spiral';
|
|
217
|
+
export { default as SplitView } from './SplitView';
|
|
218
|
+
export { default as SquareDashedSearchSparkle } from './SquareDashedSearchSparkle';
|
|
219
|
+
export { default as SquareDashedText } from './SquareDashedText';
|
|
220
|
+
export { default as SquarePath } from './SquarePath';
|
|
221
|
+
export { default as Star2Slash } from './Star2Slash';
|
|
222
|
+
export { default as StopSign } from './StopSign';
|
|
223
|
+
export { default as StopwatchBolt } from './StopwatchBolt';
|
|
224
|
+
export { default as SummitFlag } from './SummitFlag';
|
|
225
|
+
export { default as Sunrise2 } from './Sunrise2';
|
|
226
|
+
export { default as Task } from './Task';
|
|
227
|
+
export { default as Task2 } from './Task2';
|
|
228
|
+
export { default as TaskDebug } from './TaskDebug';
|
|
229
|
+
export { default as TaskSearch } from './TaskSearch';
|
|
230
|
+
export { default as Teepee } from './Teepee';
|
|
231
|
+
export { default as TextAdjust } from './TextAdjust';
|
|
232
|
+
export { default as TheatreMask } from './TheatreMask';
|
|
233
|
+
export { default as TheatreMask2 } from './TheatreMask2';
|
|
234
|
+
export { default as TimerProgress } from './TimerProgress';
|
|
235
|
+
export { default as TimerProgress2 } from './TimerProgress2';
|
|
236
|
+
export { default as TransactionSplit } from './TransactionSplit';
|
|
237
|
+
export { default as Undo2 } from './Undo2';
|
|
238
|
+
export { default as Undo3 } from './Undo3';
|
|
239
|
+
export { default as UnicornHead } from './UnicornHead';
|
|
240
|
+
export { default as UserContact } from './UserContact';
|
|
241
|
+
export { default as UserVoice2 } from './UserVoice2';
|
|
242
|
+
export { default as VipBadge } from './VipBadge';
|
|
243
|
+
export { default as VoiceCaption } from './VoiceCaption';
|
|
244
|
+
export { default as WalletCoins } from './WalletCoins';
|
|
245
|
+
export { default as Weight } from './Weight';
|
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SVG Components Index
|
|
3
|
+
* Generated by svger-cli
|
|
4
|
+
*
|
|
5
|
+
* Import individual components:
|
|
6
|
+
* import { AddSection } from './components';
|
|
7
|
+
*
|
|
8
|
+
* Import all components:
|
|
9
|
+
* import * as Icons from './components';
|
|
10
|
+
*/
|
|
11
|
+
export { default as AddSection } from './AddSection';
|
|
12
|
+
export { default as AiDeveloper } from './AiDeveloper';
|
|
13
|
+
export { default as AiLoading } from './AiLoading';
|
|
14
|
+
export { default as Album3 } from './Album3';
|
|
15
|
+
export { default as ArchiveContent2 } from './ArchiveContent2';
|
|
16
|
+
export { default as ArrowDown } from './ArrowDown';
|
|
17
|
+
export { default as ArrowDownLeft } from './ArrowDownLeft';
|
|
18
|
+
export { default as ArrowDownRight } from './ArrowDownRight';
|
|
19
|
+
export { default as ArrowLeft } from './ArrowLeft';
|
|
20
|
+
export { default as ArrowRight } from './ArrowRight';
|
|
21
|
+
export { default as ArrowRotate } from './ArrowRotate';
|
|
22
|
+
export { default as ArrowRotateAnticlockwiseCheck } from './ArrowRotateAnticlockwiseCheck';
|
|
23
|
+
export { default as ArrowRotateAnticlockwiseSlash } from './ArrowRotateAnticlockwiseSlash';
|
|
24
|
+
export { default as ArrowRotateAnticlockwiseXmark } from './ArrowRotateAnticlockwiseXmark';
|
|
25
|
+
export { default as ArrowRotateClockwiseSlash } from './ArrowRotateClockwiseSlash';
|
|
26
|
+
export { default as ArrowUp } from './ArrowUp';
|
|
27
|
+
export { default as ArrowUpLeft } from './ArrowUpLeft';
|
|
28
|
+
export { default as ArrowUpRight } from './ArrowUpRight';
|
|
29
|
+
export { default as ArrowsFilter } from './ArrowsFilter';
|
|
30
|
+
export { default as ArrowsToLineY2 } from './ArrowsToLineY2';
|
|
31
|
+
export { default as Birdhouse } from './Birdhouse';
|
|
32
|
+
export { default as BookmarkList } from './BookmarkList';
|
|
33
|
+
export { default as BookmarkedBook } from './BookmarkedBook';
|
|
34
|
+
export { default as BookmarkedBook2 } from './BookmarkedBook2';
|
|
35
|
+
export { default as Box3 } from './Box3';
|
|
36
|
+
export { default as BoxSparkle } from './BoxSparkle';
|
|
37
|
+
export { default as BoxSparkle2 } from './BoxSparkle2';
|
|
38
|
+
export { default as Brochure } from './Brochure';
|
|
39
|
+
export { default as ButtonPlus } from './ButtonPlus';
|
|
40
|
+
export { default as Calculator3 } from './Calculator3';
|
|
41
|
+
export { default as CaretDown } from './CaretDown';
|
|
42
|
+
export { default as CaretLeft } from './CaretLeft';
|
|
43
|
+
export { default as CaretRight } from './CaretRight';
|
|
44
|
+
export { default as CaretUp } from './CaretUp';
|
|
45
|
+
export { default as Chart3 } from './Chart3';
|
|
46
|
+
export { default as ChartBar } from './ChartBar';
|
|
47
|
+
export { default as ChartCandlestick2 } from './ChartCandlestick2';
|
|
48
|
+
export { default as ChatImage } from './ChatImage';
|
|
49
|
+
export { default as ChatInfo } from './ChatInfo';
|
|
50
|
+
export { default as ChatTask } from './ChatTask';
|
|
51
|
+
export { default as Check } from './Check';
|
|
52
|
+
export { default as CheckBoxArrow } from './CheckBoxArrow';
|
|
53
|
+
export { default as ChevronDown } from './ChevronDown';
|
|
54
|
+
export { default as ChevronExpandY } from './ChevronExpandY';
|
|
55
|
+
export { default as ChevronLeft } from './ChevronLeft';
|
|
56
|
+
export { default as ChevronLeftToLine } from './ChevronLeftToLine';
|
|
57
|
+
export { default as ChevronRight } from './ChevronRight';
|
|
58
|
+
export { default as ChevronRightToLine } from './ChevronRightToLine';
|
|
59
|
+
export { default as ChevronUp } from './ChevronUp';
|
|
60
|
+
export { default as Child } from './Child';
|
|
61
|
+
export { default as CircleCoinIn } from './CircleCoinIn';
|
|
62
|
+
export { default as CircleCoinOut } from './CircleCoinOut';
|
|
63
|
+
export { default as CircleCoinPlus } from './CircleCoinPlus';
|
|
64
|
+
export { default as CircleConversion } from './CircleConversion';
|
|
65
|
+
export { default as CircleCross } from './CircleCross';
|
|
66
|
+
export { default as CircleHalfArrowDown } from './CircleHalfArrowDown';
|
|
67
|
+
export { default as CircleHalfArrowLeft } from './CircleHalfArrowLeft';
|
|
68
|
+
export { default as CircleHalfArrowRight } from './CircleHalfArrowRight';
|
|
69
|
+
export { default as CircleHalfArrowUp } from './CircleHalfArrowUp';
|
|
70
|
+
export { default as CircleHalfDottedChart2 } from './CircleHalfDottedChart2';
|
|
71
|
+
export { default as ClockTime } from './ClockTime';
|
|
72
|
+
export { default as CloneDashed3 } from './CloneDashed3';
|
|
73
|
+
export { default as CloneImageDashed } from './CloneImageDashed';
|
|
74
|
+
export { default as CloneVideoDashed } from './CloneVideoDashed';
|
|
75
|
+
export { default as CloudeCode } from './CloudeCode';
|
|
76
|
+
export { default as CoinStack } from './CoinStack';
|
|
77
|
+
export { default as ConditionalLogic } from './ConditionalLogic';
|
|
78
|
+
export { default as ConnectPlus } from './ConnectPlus';
|
|
79
|
+
export { default as Connection3 } from './Connection3';
|
|
80
|
+
export { default as CopyDelete } from './CopyDelete';
|
|
81
|
+
export { default as CopyId } from './CopyId';
|
|
82
|
+
export { default as Deaf } from './Deaf';
|
|
83
|
+
export { default as DependencyLink } from './DependencyLink';
|
|
84
|
+
export { default as DesktopDock } from './DesktopDock';
|
|
85
|
+
export { default as DiamondSparkle } from './DiamondSparkle';
|
|
86
|
+
export { default as DocumentScan } from './DocumentScan';
|
|
87
|
+
export { default as Dog2 } from './Dog2';
|
|
88
|
+
export { default as DogLeash } from './DogLeash';
|
|
89
|
+
export { default as DogSlash } from './DogSlash';
|
|
90
|
+
export { default as DotFormation } from './DotFormation';
|
|
91
|
+
export { default as DrawFinger } from './DrawFinger';
|
|
92
|
+
export { default as Ear } from './Ear';
|
|
93
|
+
export { default as EarSound } from './EarSound';
|
|
94
|
+
export { default as Embed } from './Embed';
|
|
95
|
+
export { default as EnterDoor } from './EnterDoor';
|
|
96
|
+
export { default as EnterHome } from './EnterHome';
|
|
97
|
+
export { default as ExitDoor } from './ExitDoor';
|
|
98
|
+
export { default as Export2 } from './Export2';
|
|
99
|
+
export { default as EyeSparkle } from './EyeSparkle';
|
|
100
|
+
export { default as FaceRobot } from './FaceRobot';
|
|
101
|
+
export { default as FaceRobot2 } from './FaceRobot2';
|
|
102
|
+
export { default as FaceRobot3 } from './FaceRobot3';
|
|
103
|
+
export { default as FerrisWheel } from './FerrisWheel';
|
|
104
|
+
export { default as FileExport } from './FileExport';
|
|
105
|
+
export { default as FlagMenu } from './FlagMenu';
|
|
106
|
+
export { default as FocusCenter } from './FocusCenter';
|
|
107
|
+
export { default as FoodOrder } from './FoodOrder';
|
|
108
|
+
export { default as FuelCan } from './FuelCan';
|
|
109
|
+
export { default as FuelCan2 } from './FuelCan2';
|
|
110
|
+
export { default as Gear3Sparkle } from './Gear3Sparkle';
|
|
111
|
+
export { default as GridSparkle } from './GridSparkle';
|
|
112
|
+
export { default as HandHoldingGlobe } from './HandHoldingGlobe';
|
|
113
|
+
export { default as Handshake2 } from './Handshake2';
|
|
114
|
+
export { default as Haptic } from './Haptic';
|
|
115
|
+
export { default as HelpChat } from './HelpChat';
|
|
116
|
+
export { default as HexagonSparkle } from './HexagonSparkle';
|
|
117
|
+
export { default as Hiking } from './Hiking';
|
|
118
|
+
export { default as History2 } from './History2';
|
|
119
|
+
export { default as HorseHead } from './HorseHead';
|
|
120
|
+
export { default as HouseDollarSign } from './HouseDollarSign';
|
|
121
|
+
export { default as HouseMinus2 } from './HouseMinus2';
|
|
122
|
+
export { default as Images3 } from './Images3';
|
|
123
|
+
export { default as Img4k } from './Img4k';
|
|
124
|
+
export { default as InsertCrypto } from './InsertCrypto';
|
|
125
|
+
export { default as InsertDollar } from './InsertDollar';
|
|
126
|
+
export { default as InstantMoney } from './InstantMoney';
|
|
127
|
+
export { default as InvoiceIn } from './InvoiceIn';
|
|
128
|
+
export { default as InwardFlow } from './InwardFlow';
|
|
129
|
+
export { default as JoinedHands } from './JoinedHands';
|
|
130
|
+
export { default as LawShield } from './LawShield';
|
|
131
|
+
export { default as Lectern } from './Lectern';
|
|
132
|
+
export { default as Lectern2 } from './Lectern2';
|
|
133
|
+
export { default as LightSpark } from './LightSpark';
|
|
134
|
+
export { default as LightSpark2 } from './LightSpark2';
|
|
135
|
+
export { default as ListExport } from './ListExport';
|
|
136
|
+
export { default as ListFavs3 } from './ListFavs3';
|
|
137
|
+
export { default as ListFavs4 } from './ListFavs4';
|
|
138
|
+
export { default as LoadingStatus } from './LoadingStatus';
|
|
139
|
+
export { default as LoadingStatus2 } from './LoadingStatus2';
|
|
140
|
+
export { default as LockedChat } from './LockedChat';
|
|
141
|
+
export { default as MagicHat } from './MagicHat';
|
|
142
|
+
export { default as MagicRabbit } from './MagicRabbit';
|
|
143
|
+
export { default as MagnifierSparkle2 } from './MagnifierSparkle2';
|
|
144
|
+
export { default as MediaLibrary2 } from './MediaLibrary2';
|
|
145
|
+
export { default as Membership } from './Membership';
|
|
146
|
+
export { default as Menu4 } from './Menu4';
|
|
147
|
+
export { default as MilitaryMedal } from './MilitaryMedal';
|
|
148
|
+
export { default as MobileCircuit } from './MobileCircuit';
|
|
149
|
+
export { default as MoneyRefund } from './MoneyRefund';
|
|
150
|
+
export { default as MoneyRefund2 } from './MoneyRefund2';
|
|
151
|
+
export { default as MotionAlongPath } from './MotionAlongPath';
|
|
152
|
+
export { default as Msgs2 } from './Msgs2';
|
|
153
|
+
export { default as Navigation } from './Navigation';
|
|
154
|
+
export { default as NavigationHorizontal } from './NavigationHorizontal';
|
|
155
|
+
export { default as NavigationVertical } from './NavigationVertical';
|
|
156
|
+
export { default as ObjectSelection } from './ObjectSelection';
|
|
157
|
+
export { default as OfficeUser } from './OfficeUser';
|
|
158
|
+
export { default as OpenExternal } from './OpenExternal';
|
|
159
|
+
export { default as OrbitSparkle } from './OrbitSparkle';
|
|
160
|
+
export { default as OutwardFlow } from './OutwardFlow';
|
|
161
|
+
export { default as PaperPlaneFast } from './PaperPlaneFast';
|
|
162
|
+
export { default as Parachute } from './Parachute';
|
|
163
|
+
export { default as Paw } from './Paw';
|
|
164
|
+
export { default as Peace } from './Peace';
|
|
165
|
+
export { default as PicnicTable } from './PicnicTable';
|
|
166
|
+
export { default as Pillow } from './Pillow';
|
|
167
|
+
export { default as Playground } from './Playground';
|
|
168
|
+
export { default as Playlist4 } from './Playlist4';
|
|
169
|
+
export { default as Plug3 } from './Plug3';
|
|
170
|
+
export { default as Plug3Sparkle } from './Plug3Sparkle';
|
|
171
|
+
export { default as PlugOff } from './PlugOff';
|
|
172
|
+
export { default as PlugSparkle } from './PlugSparkle';
|
|
173
|
+
export { default as PopEffect } from './PopEffect';
|
|
174
|
+
export { default as ProfileAnalytics } from './ProfileAnalytics';
|
|
175
|
+
export { default as ProfileBasic } from './ProfileBasic';
|
|
176
|
+
export { default as ProgressIndicator2 } from './ProgressIndicator2';
|
|
177
|
+
export { default as QuickActions } from './QuickActions';
|
|
178
|
+
export { default as QuickTimer } from './QuickTimer';
|
|
179
|
+
export { default as Rabbit } from './Rabbit';
|
|
180
|
+
export { default as Receipt3 } from './Receipt3';
|
|
181
|
+
export { default as Receipt4 } from './Receipt4';
|
|
182
|
+
export { default as Redo2 } from './Redo2';
|
|
183
|
+
export { default as Redo3 } from './Redo3';
|
|
184
|
+
export { default as Refresh3AnticlockwiseSlash } from './Refresh3AnticlockwiseSlash';
|
|
185
|
+
export { default as Refresh3ClockwiseSlash } from './Refresh3ClockwiseSlash';
|
|
186
|
+
export { default as RefreshAnticlockwise } from './RefreshAnticlockwise';
|
|
187
|
+
export { default as RefreshAnticlockwiseSlash } from './RefreshAnticlockwiseSlash';
|
|
188
|
+
export { default as RefreshClockwiseSlash } from './RefreshClockwiseSlash';
|
|
189
|
+
export { default as Refrigerator } from './Refrigerator';
|
|
190
|
+
export { default as RemoteControl } from './RemoteControl';
|
|
191
|
+
export { default as RemoteControl2 } from './RemoteControl2';
|
|
192
|
+
export { default as ReportFile } from './ReportFile';
|
|
193
|
+
export { default as Reposition } from './Reposition';
|
|
194
|
+
export { default as Rerouting } from './Rerouting';
|
|
195
|
+
export { default as Robot2 } from './Robot2';
|
|
196
|
+
export { default as Robot3 } from './Robot3';
|
|
197
|
+
export { default as Robot4 } from './Robot4';
|
|
198
|
+
export { default as RockOn } from './RockOn';
|
|
199
|
+
export { default as RopeStanchions } from './RopeStanchions';
|
|
200
|
+
export { default as Rotation3602 } from './Rotation3602';
|
|
201
|
+
export { default as SavedItems2 } from './SavedItems2';
|
|
202
|
+
export { default as ScaleImg4k } from './ScaleImg4k';
|
|
203
|
+
export { default as ScanImage } from './ScanImage';
|
|
204
|
+
export { default as ScissorsSparkle } from './ScissorsSparkle';
|
|
205
|
+
export { default as Seatbelt } from './Seatbelt';
|
|
206
|
+
export { default as ShakaHand } from './ShakaHand';
|
|
207
|
+
export { default as ShapeRectangle } from './ShapeRectangle';
|
|
208
|
+
export { default as Shovel } from './Shovel';
|
|
209
|
+
export { default as ShuffleSparkle } from './ShuffleSparkle';
|
|
210
|
+
export { default as SideProfileQuestion } from './SideProfileQuestion';
|
|
211
|
+
export { default as SideProfileSparkle } from './SideProfileSparkle';
|
|
212
|
+
export { default as SidebarEdit } from './SidebarEdit';
|
|
213
|
+
export { default as SlashCircle } from './SlashCircle';
|
|
214
|
+
export { default as Sliders4 } from './Sliders4';
|
|
215
|
+
export { default as Snail } from './Snail';
|
|
216
|
+
export { default as Spiral } from './Spiral';
|
|
217
|
+
export { default as SplitView } from './SplitView';
|
|
218
|
+
export { default as SquareDashedSearchSparkle } from './SquareDashedSearchSparkle';
|
|
219
|
+
export { default as SquareDashedText } from './SquareDashedText';
|
|
220
|
+
export { default as SquarePath } from './SquarePath';
|
|
221
|
+
export { default as Star2Slash } from './Star2Slash';
|
|
222
|
+
export { default as StopSign } from './StopSign';
|
|
223
|
+
export { default as StopwatchBolt } from './StopwatchBolt';
|
|
224
|
+
export { default as SummitFlag } from './SummitFlag';
|
|
225
|
+
export { default as Sunrise2 } from './Sunrise2';
|
|
226
|
+
export { default as Task } from './Task';
|
|
227
|
+
export { default as Task2 } from './Task2';
|
|
228
|
+
export { default as TaskDebug } from './TaskDebug';
|
|
229
|
+
export { default as TaskSearch } from './TaskSearch';
|
|
230
|
+
export { default as Teepee } from './Teepee';
|
|
231
|
+
export { default as TextAdjust } from './TextAdjust';
|
|
232
|
+
export { default as TheatreMask } from './TheatreMask';
|
|
233
|
+
export { default as TheatreMask2 } from './TheatreMask2';
|
|
234
|
+
export { default as TimerProgress } from './TimerProgress';
|
|
235
|
+
export { default as TimerProgress2 } from './TimerProgress2';
|
|
236
|
+
export { default as TransactionSplit } from './TransactionSplit';
|
|
237
|
+
export { default as Undo2 } from './Undo2';
|
|
238
|
+
export { default as Undo3 } from './Undo3';
|
|
239
|
+
export { default as UnicornHead } from './UnicornHead';
|
|
240
|
+
export { default as UserContact } from './UserContact';
|
|
241
|
+
export { default as UserVoice2 } from './UserVoice2';
|
|
242
|
+
export { default as VipBadge } from './VipBadge';
|
|
243
|
+
export { default as VoiceCaption } from './VoiceCaption';
|
|
244
|
+
export { default as WalletCoins } from './WalletCoins';
|
|
245
|
+
export { default as Weight } from './Weight';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@layer viraui.preflight;@layer viraui.preflight{html{font-size:100%;box-sizing:border-box;line-height:1.5;background-color:var(--global-background);color:var(--global-foreground)}*{corner-shape:var(--corner-shape,unset)}*,:after,:before{margin:0;box-sizing:inherit}:focus-visible{outline:2px solid var(--global-foreground);outline-offset:2px}body{color:var(--global-foreground);margin:0;font-size:1rem;font-optical-sizing:auto;font-family:var(--font-family-body),sans-serif;font-variation-settings:"wght" 400}::selection{background-color:var(--global-primary);color:contrast-color(var(--global-primary));text-shadow:none}img{display:block;inline-size:100%;max-inline-size:100%}svg:not([fill]){fill:currentcolor}fieldset{border:0}ol ul,ul ol{font-size:medium}table{border-spacing:0;width:100%;border-collapse:collapse}table[data-layout-fixed]{table-layout:fixed}table thead{box-shadow:inset 0 -3px 0 var(--base-2)}table[data-table-separators] tr+tr{border-top:1px solid var(--base-2)}table th{white-space:nowrap;font-variation-settings:"wght" 800}table td,table th{border:none;text-align:left;font-size:medium;padding:calc(var(--space-x-small) + var(--space-2x-small)) var(--space-small)}table[data-layout-fixed] th{white-space:unset}[data-elevation]{--shadow-direction:1;--shadow-opacity-factor:0.16;--extra-shadow:0 0 0 1px transparent;--shadow-color:oklch(0% 0 0deg);--elevation-transition-duration:160ms;--elevation-transition-easing:ease}}@layer viraui.preflight{[data-elevation]:where([data-elevation-direction=bottom],[data-elevation-direction=right]){--shadow-direction:1}[data-elevation]:where([data-elevation-direction=top],[data-elevation-direction=left]){--shadow-direction:-1}[data-elevation-hover="0"]:hover,[data-elevation="0"]{--y1:0px;--x1:0px;box-shadow:calc(var(--x1) * var(--shadow-direction)) calc(var(--y1) * var(--shadow-direction)) 0 oklch(from var(--shadow-color) l c h/var(--shadow-opacity-factor)),0 0 0 color-mix(in oklch,var(--shadow-color),transparent calc(94% - var(--shadow-opacity-factor))),0 0 0 oklch(from var(--shadow-color) l c h/var(--shadow-opacity-factor)),var(--extra-shadow)}[data-elevation-hover="1"]:hover,[data-elevation="1"]{--y1:0px;--y2:2px;--y3:4px;--y4:7px;--x1:0px;--x2:0px;--x3:0px;--x4:0px;box-shadow:calc(var(--x1) * var(--shadow-direction)) calc(var(--y1) * var(--shadow-direction)) 1px oklab(from var(--shadow-color) l a b/.1),calc(var(--x2) * var(--shadow-direction)) calc(var(--y2) * var(--shadow-direction)) 2px oklab(from var(--shadow-color) l a b/.09),calc(var(--x3) * var(--shadow-direction)) calc(var(--y3) * var(--shadow-direction)) 2px oklab(from var(--shadow-color) l a b/.05),calc(var(--x4) * var(--shadow-direction)) calc(var(--y4) * var(--shadow-direction)) 3px oklab(from var(--shadow-color) l a b/.01),var(--extra-shadow)}[data-elevation-hover="1"]:where([data-elevation-direction=left],[data-elevation-direction=right]):hover,[data-elevation="1"]:where([data-elevation-direction=left],[data-elevation-direction=right]){--y1:0px;--y2:0px;--y3:0px;--y4:0px;--x1:0px;--x2:2px;--x3:4px;--x4:7px}[data-elevation-hover="2"]:hover,[data-elevation="2"]{--y1:1px;--y2:5px;--y3:11px;--y4:19px;--x1:0px;--x2:0px;--x3:0px;--x4:0px;box-shadow:calc(var(--x1) * var(--shadow-direction)) calc(var(--y1) * var(--shadow-direction)) 3px oklab(from var(--shadow-color) l a b/.1),calc(var(--x2) * var(--shadow-direction)) calc(var(--y2) * var(--shadow-direction)) 5px oklab(from var(--shadow-color) l a b/.09),calc(var(--x3) * var(--shadow-direction)) calc(var(--y3) * var(--shadow-direction)) 6px oklab(from var(--shadow-color) l a b/.05),calc(var(--x4) * var(--shadow-direction)) calc(var(--y4) * var(--shadow-direction)) 8px oklab(from var(--shadow-color) l a b/.01),var(--extra-shadow)}[data-elevation-hover="2"]:where([data-elevation-direction=top],[data-elevation-direction=left]):hover,[data-elevation="2"]:where([data-elevation-direction=top],[data-elevation-direction=left]){box-shadow:calc(var(--x1) * var(--shadow-direction)) calc(var(--y1) * var(--shadow-direction)) 3px oklab(from var(--shadow-color) l a b/.1),calc(var(--x2) * var(--shadow-direction)) calc(var(--y2) * var(--shadow-direction)) 5px oklab(from var(--shadow-color) l a b/.09),calc(var(--x3) * var(--shadow-direction)) calc(var(--y3) * var(--shadow-direction)) 7px oklab(from var(--shadow-color) l a b/.05),calc(var(--x4) * var(--shadow-direction)) calc(var(--y4) * var(--shadow-direction)) 8px oklab(from var(--shadow-color) l a b/.01),var(--extra-shadow)}[data-elevation-hover="2"]:where([data-elevation-direction=left],[data-elevation-direction=right]):hover,[data-elevation="2"]:where([data-elevation-direction=left],[data-elevation-direction=right]){--y1:0px;--y2:0px;--y3:0px;--y4:0px;--x1:1px;--x2:5px;--x3:11px;--x4:19px}[data-elevation-hover="2"]:where([data-elevation-direction=right]):hover,[data-elevation="2"]:where([data-elevation-direction=right]){box-shadow:calc(var(--x1) * var(--shadow-direction)) calc(var(--y1) * var(--shadow-direction)) 3px oklab(from var(--shadow-color) l a b/.1),calc(var(--x2) * var(--shadow-direction)) calc(var(--y2) * var(--shadow-direction)) 5px oklab(from var(--shadow-color) l a b/.09),calc(var(--x3) * var(--shadow-direction)) calc(var(--y3) * var(--shadow-direction)) 6px oklab(from var(--shadow-color) l a b/.05),calc(var(--x4) * var(--shadow-direction)) calc(var(--y4) * var(--shadow-direction)) 8px oklab(from var(--shadow-color) l a b/.01),var(--extra-shadow)}[data-elevation-hover="3"]:hover,[data-elevation="3"]{--y1:2px;--y2:7px;--y3:16px;--y4:29px;--x1:0px;--x2:0px;--x3:0px;--x4:0px;box-shadow:calc(var(--x1) * var(--shadow-direction)) calc(var(--y1) * var(--shadow-direction)) 4px oklab(from var(--shadow-color) l a b/.1),calc(var(--x2) * var(--shadow-direction)) calc(var(--y2) * var(--shadow-direction)) 7px oklab(from var(--shadow-color) l a b/.09),calc(var(--x3) * var(--shadow-direction)) calc(var(--y3) * var(--shadow-direction)) 10px oklab(from var(--shadow-color) l a b/.05),calc(var(--x4) * var(--shadow-direction)) calc(var(--y4) * var(--shadow-direction)) 12px oklab(from var(--shadow-color) l a b/.01),var(--extra-shadow)}[data-elevation-hover="3"]:where([data-elevation-direction=left],[data-elevation-direction=right]):hover,[data-elevation="3"]:where([data-elevation-direction=left],[data-elevation-direction=right]){--y1:0px;--y2:0px;--y3:0px;--y4:0px;--x1:2px;--x2:7px;--x3:16px;--x4:29px}[data-elevation-hover="3"]:where([data-elevation-direction=right]):hover,[data-elevation="3"]:where([data-elevation-direction=right]){--x2:10px;--x3:22px;--x4:39px;box-shadow:calc(var(--x1) * var(--shadow-direction)) calc(var(--y1) * var(--shadow-direction)) 5px oklab(from var(--shadow-color) l a b/.1),calc(var(--x2) * var(--shadow-direction)) calc(var(--y2) * var(--shadow-direction)) 10px oklab(from var(--shadow-color) l a b/.09),calc(var(--x3) * var(--shadow-direction)) calc(var(--y3) * var(--shadow-direction)) 13px oklab(from var(--shadow-color) l a b/.05),calc(var(--x4) * var(--shadow-direction)) calc(var(--y4) * var(--shadow-direction)) 15px oklab(from var(--shadow-color) l a b/.01),var(--extra-shadow)}[data-elevation-hover="4"]:hover,[data-elevation="4"]{--y1:4px;--y2:14px;--y3:33px;--y4:58px;--x1:0px;--x2:0px;--x3:0px;--x4:0px;box-shadow:calc(var(--x1) * var(--shadow-direction)) calc(var(--y1) * var(--shadow-direction)) 8px oklab(from var(--shadow-color) l a b/.1),calc(var(--x2) * var(--shadow-direction)) calc(var(--y2) * var(--shadow-direction)) 14px oklab(from var(--shadow-color) l a b/.09),calc(var(--x3) * var(--shadow-direction)) calc(var(--y3) * var(--shadow-direction)) 20px oklab(from var(--shadow-color) l a b/.05),calc(var(--x4) * var(--shadow-direction)) calc(var(--y4) * var(--shadow-direction)) 23px oklab(from var(--shadow-color) l a b/.01),var(--extra-shadow)}[data-elevation-hover="4"]:where([data-elevation-direction=top]):hover,[data-elevation="4"]:where([data-elevation-direction=top]){--y2:15px;box-shadow:calc(var(--x1) * var(--shadow-direction)) calc(var(--y1) * var(--shadow-direction)) 8px oklab(from var(--shadow-color) l a b/.1),calc(var(--x2) * var(--shadow-direction)) calc(var(--y2) * var(--shadow-direction)) 15px oklab(from var(--shadow-color) l a b/.09),calc(var(--x3) * var(--shadow-direction)) calc(var(--y3) * var(--shadow-direction)) 20px oklab(from var(--shadow-color) l a b/.05),calc(var(--x4) * var(--shadow-direction)) calc(var(--y4) * var(--shadow-direction)) 23px oklab(from var(--shadow-color) l a b/.01),var(--extra-shadow)}[data-elevation-hover="4"]:where([data-elevation-direction=left]):hover,[data-elevation="4"]:where([data-elevation-direction=left]){--y1:0px;--y2:0px;--y3:0px;--y4:0px;--x1:4px;--x2:15px;--x3:33px;--x4:58px;box-shadow:calc(var(--x1) * var(--shadow-direction)) calc(var(--y1) * var(--shadow-direction)) 8px oklab(from var(--shadow-color) l a b/.1),calc(var(--x2) * var(--shadow-direction)) calc(var(--y2) * var(--shadow-direction)) 15px oklab(from var(--shadow-color) l a b/.09),calc(var(--x3) * var(--shadow-direction)) calc(var(--y3) * var(--shadow-direction)) 20px oklab(from var(--shadow-color) l a b/.05),calc(var(--x4) * var(--shadow-direction)) calc(var(--y4) * var(--shadow-direction)) 23px oklab(from var(--shadow-color) l a b/.01),var(--extra-shadow)}[data-elevation-hover="4"]:where([data-elevation-direction=right]):hover,[data-elevation="4"]:where([data-elevation-direction=right]){--y1:0px;--y2:0px;--y3:0px;--y4:0px;--x1:4px;--x2:14px;--x3:33px;--x4:58px;box-shadow:calc(var(--x1) * var(--shadow-direction)) calc(var(--y1) * var(--shadow-direction)) 8px oklab(from var(--shadow-color) l a b/.1),calc(var(--x2) * var(--shadow-direction)) calc(var(--y2) * var(--shadow-direction)) 14px oklab(from var(--shadow-color) l a b/.09),calc(var(--x3) * var(--shadow-direction)) calc(var(--y3) * var(--shadow-direction)) 20px oklab(from var(--shadow-color) l a b/.05),calc(var(--x4) * var(--shadow-direction)) calc(var(--y4) * var(--shadow-direction)) 23px oklab(from var(--shadow-color) l a b/.01),var(--extra-shadow)}}@layer viraui.preflight{[data-grow=false]{--vira-flex-grow:0;flex-grow:0}[data-shrink=false]{--vira-flex-shrink:0;flex-shrink:0}:root{color-scheme:light dark}[data-theme=dark]{color-scheme:dark}[data-theme=light]{color-scheme:light}}@layer viraui.preflight{}[data-elevation]{transition-property:box-shadow;transition-duration:var(--elevation-transition-duration,.16s);transition-timing-function:var(--elevation-transition-easing,ease)}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Select",
|
|
3
|
+
"summary": "Field-wrapped single-select dropdown with grouped options and field copy.",
|
|
4
|
+
"whenToUse": [
|
|
5
|
+
"Choose one value from a predefined list with label and helper copy",
|
|
6
|
+
"Grouped or separated option lists",
|
|
7
|
+
"Trigger chrome aligned with Textfield control shell"
|
|
8
|
+
],
|
|
9
|
+
"whenNotToUse": ["Multiple selection", "Combobox, filterable search, or custom anchor positioning"],
|
|
10
|
+
"accessibility": [
|
|
11
|
+
"Provide label or aria-label on the trigger so the field has an accessible name",
|
|
12
|
+
"Wire description and error copy through the field pattern so assistive tech gets helper text",
|
|
13
|
+
"Keep list options keyboard reachable; do not trap focus outside the popup pattern"
|
|
14
|
+
],
|
|
15
|
+
"antiPatterns": ["Expecting multi-select or combobox behavior", "Leaving the trigger without label or aria-label"],
|
|
16
|
+
"related": ["Textfield", "Stack", "Surface", "Icon"]
|
|
17
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Skeleton",
|
|
3
|
+
"summary": "Decorative loading placeholder sized by props, not children.",
|
|
4
|
+
"whenToUse": [
|
|
5
|
+
"Placeholder blocks while content loads",
|
|
6
|
+
"Fixed-dimension shimmer regions in cards or lists",
|
|
7
|
+
"Avatar loading placeholder composition"
|
|
8
|
+
],
|
|
9
|
+
"whenNotToUse": [
|
|
10
|
+
"Deriving layout from children content",
|
|
11
|
+
"Standalone accessible loading status without a surrounding aria-busy region"
|
|
12
|
+
],
|
|
13
|
+
"accessibility": [
|
|
14
|
+
"Skeleton is decorative (aria-hidden) — announce loading on the surrounding region with aria-busy or live text",
|
|
15
|
+
"Do not put aria-busy on Skeleton itself",
|
|
16
|
+
"Replace skeleton with real content as soon as data is ready"
|
|
17
|
+
],
|
|
18
|
+
"antiPatterns": [
|
|
19
|
+
"Using children to derive skeleton dimensions",
|
|
20
|
+
"Putting aria-busy on Skeleton instead of the surrounding loading region"
|
|
21
|
+
],
|
|
22
|
+
"related": ["Avatar"]
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Slider",
|
|
3
|
+
"summary": "Field-wrapped range input supporting single-thumb or two-thumb range selection.",
|
|
4
|
+
"whenToUse": [
|
|
5
|
+
"Numeric value selection on a horizontal or vertical axis",
|
|
6
|
+
"Range selection with two thumbs",
|
|
7
|
+
"Field label, description, and error copy like Textfield"
|
|
8
|
+
],
|
|
9
|
+
"whenNotToUse": [
|
|
10
|
+
"Fixed pixel track lengths — Slider fills its container",
|
|
11
|
+
"Custom size or variant props — single medium treatment"
|
|
12
|
+
],
|
|
13
|
+
"accessibility": [
|
|
14
|
+
"Provide label or aria-label; when label is omitted, name thumbs with thumbLabel",
|
|
15
|
+
"Range sliders need distinct accessible names for each thumb",
|
|
16
|
+
"Keep keyboard adjustment and value feedback available through native slider semantics"
|
|
17
|
+
],
|
|
18
|
+
"antiPatterns": [
|
|
19
|
+
"Wrapping Slider.Control and Slider.Value in extra layout inside Slider.Root",
|
|
20
|
+
"Overriding Slider.Indicator position in CSS"
|
|
21
|
+
],
|
|
22
|
+
"related": ["Textfield", "Stack", "Text"]
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Spinner",
|
|
3
|
+
"summary": "Decorative SVG pulsing loading indicator used inside interactive components.",
|
|
4
|
+
"whenToUse": [
|
|
5
|
+
"Inline loading overlay inside Button or IconButton",
|
|
6
|
+
"Decorative in-progress indicator with aria-hidden default",
|
|
7
|
+
"Loading feedback where the parent exposes the accessible status"
|
|
8
|
+
],
|
|
9
|
+
"whenNotToUse": [
|
|
10
|
+
"Standalone accessible loading status without explicit labeling on a parent",
|
|
11
|
+
"Page-level loading when a labeled region is not provided"
|
|
12
|
+
],
|
|
13
|
+
"accessibility": [
|
|
14
|
+
"Spinner is decorative — parent control or region must expose loading with aria-busy or visible status text",
|
|
15
|
+
"Do not use Spinner alone as the only page-level loading announcement",
|
|
16
|
+
"Keep the control label stable while loading overlays appear"
|
|
17
|
+
],
|
|
18
|
+
"antiPatterns": [
|
|
19
|
+
"Using Spinner alone as the only loading announcement for a page",
|
|
20
|
+
"Embedding animation rules outside the component stylesheet"
|
|
21
|
+
],
|
|
22
|
+
"related": ["Button", "IconButton"]
|
|
23
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Stack",
|
|
3
|
+
"summary": "Flex layout primitive for arranging children with token spacing, alignment, and padding.",
|
|
4
|
+
"whenToUse": [
|
|
5
|
+
"Column or row layouts with token gap and alignment",
|
|
6
|
+
"Composing screens and component internals without custom flex CSS",
|
|
7
|
+
"Custom native root through render while keeping data-stack hooks"
|
|
8
|
+
],
|
|
9
|
+
"whenNotToUse": [
|
|
10
|
+
"Cases where a single component already owns required flex chrome",
|
|
11
|
+
"Expecting the Stack root itself to grow via fillChildren"
|
|
12
|
+
],
|
|
13
|
+
"accessibility": [
|
|
14
|
+
"Stack is presentational — choose render roots that preserve correct semantics (button, list, heading)",
|
|
15
|
+
"Keep reading order aligned with visual order when using direction and wrap",
|
|
16
|
+
"Do not use Stack alone to imply grouping; use landmarks or headings where needed"
|
|
17
|
+
],
|
|
18
|
+
"antiPatterns": ["Re-declaring primitive flex container rules in app CSS when Stack can own the layout"],
|
|
19
|
+
"related": ["Surface", "Text", "Button"]
|
|
20
|
+
}
|