UNPKG

@nex-ui/react

Version:

🎉 A beautiful, modern, and reliable React component library.

28 lines (24 loc) • 572 B
'use strict'; var system = require('@nex-ui/system'); const buttonBaseRecipes = system.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' } } } }); exports.buttonBaseRecipes = buttonBaseRecipes;