@nex-ui/react
Version:
🎉 A beautiful, modern, and reliable React component library.
30 lines (26 loc) • 567 B
JavaScript
'use strict';
var system = require('@nex-ui/system');
const dividerRecipe = system.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'
}
});
exports.dividerRecipe = dividerRecipe;