UNPKG

@nex-ui/react

Version:

🎉 A beautiful, modern, and reliable React component library.

64 lines (61 loc) • 1.79 kB
import * as _nex_ui_system from '@nex-ui/system'; import { RecipeVariants } from '@nex-ui/system'; declare const popoverRecipe: _nex_ui_system.RecipeRuntimeFn<{}>; declare const popoverContentRecipe: _nex_ui_system.RecipeRuntimeFn<{ radius: { readonly sm: { readonly borderRadius: "md"; }; readonly md: { readonly borderRadius: "lg"; }; readonly lg: { readonly borderRadius: "xl"; }; readonly full: { readonly borderRadius: "full"; }; readonly none: { readonly borderRadius: "none"; }; }; color: { default: { bg: "content"; color: "inherit"; boxShadow: "0px 0px 5px 0px #00000005,0px 2px 10px 0px #0000000f,0px 0px 1px 0px #0000004d"; }; blue: { readonly colorPalette: "blue"; }; gray: { readonly colorPalette: "gray"; }; pink: { readonly colorPalette: "pink"; }; purple: { readonly colorPalette: "purple"; }; cyan: { readonly colorPalette: "cyan"; }; orange: { readonly colorPalette: "orange"; }; yellow: { readonly colorPalette: "yellow"; }; green: { readonly colorPalette: "green"; }; red: { readonly colorPalette: "red"; }; }; }>; type PopoverRecipe = typeof popoverRecipe; type PopoverContentRecipe = typeof popoverContentRecipe; type PopoverContentVariants = RecipeVariants<PopoverContentRecipe>; export { popoverContentRecipe, popoverRecipe }; export type { PopoverContentRecipe, PopoverContentVariants, PopoverRecipe };