@nex-ui/react
Version:
🎉 A beautiful, modern, and reliable React component library.
26 lines (23 loc) • 540 B
JavaScript
import { defineRecipe } from '@nex-ui/system';
const buttonBaseRecipes = defineRecipe({
base: {
bg: 'transparent',
p: 0,
border: 'none',
outline: 'none',
userSelect: 'none',
cursor: 'pointer',
boxSizing: 'border-box',
display: 'inline-flex',
justifyContent: 'center',
alignItems: 'center'
},
variants: {
disabled: {
true: {
pointerEvents: 'none'
}
}
}
});
export { buttonBaseRecipes };