@nex-ui/react
Version:
🎉 A beautiful, modern, and reliable React component library.
28 lines (25 loc) • 539 B
JavaScript
import { defineRecipe } from '@nex-ui/system';
const dividerRecipe = defineRecipe({
base: {
m: 0,
border: 'none',
bg: 'gray.highlight'
},
variants: {
orientation: {
vertical: {
mx: '6',
width: 'px',
height: '100%'
},
horizontal: {
height: 'px',
my: '6'
}
}
},
defaultVariants: {
orientation: 'horizontal'
}
});
export { dividerRecipe };