@nex-ui/react
Version:
🎉 A beautiful, modern, and reliable React component library.
27 lines (24 loc) • 589 B
TypeScript
import * as _nex_ui_system from '@nex-ui/system';
import { RecipeVariants } from '@nex-ui/system';
declare const iconRecipe: _nex_ui_system.RecipeRuntimeFn<{
spin: {
true: {
animation: `${Keyframes} 1s linear infinite`;
};
};
size: {
sm: {
fs: "1.25em";
};
md: {
fs: "1.5em";
};
lg: {
fs: "1.75em";
};
};
}>;
type IconRecipe = typeof iconRecipe;
type IconVariants = RecipeVariants<IconRecipe>;
export { iconRecipe };
export type { IconRecipe, IconVariants };