@nex-ui/react
Version:
🎉 A beautiful, modern, and reliable React component library.
22 lines (19 loc) • 549 B
TypeScript
import * as _nex_ui_system from '@nex-ui/system';
import { RecipeVariants } from '@nex-ui/system';
declare const dividerRecipe: _nex_ui_system.RecipeRuntimeFn<{
orientation: {
vertical: {
mx: "6";
width: "px";
height: "100%";
};
horizontal: {
height: "px";
my: "6";
};
};
}>;
type DividerRecipe = typeof dividerRecipe;
type DividerVariants = RecipeVariants<DividerRecipe>;
export { dividerRecipe };
export type { DividerRecipe, DividerVariants };