chore: add Button primary variant on theme

pull/26459/head^2
Nicolás Quiroz 2 years ago
parent b60e17150b
commit 0d0c486240
  1. 18
      src/theme/components/Button.ts
  2. 1
      src/theme/components/index.ts

@ -0,0 +1,18 @@
export const Button = {
variants: {
primary: {
py: '8px',
px: '32px',
borderRadius: 0,
width: { base: '188px', md: 'auto' },
// TODO: move to theme colors
bg: 'brand.light.primary',
_hover: { bg: 'brand.light.secondary' },
_focus: {
bg: 'brand.light.primary',
boxShadow: 'inset 0 0 0 2px #06fece !important'
},
_active: { borderTop: '4px solid', borderColor: 'green.200', pt: '4px' }
}
}
};

@ -0,0 +1 @@
export * from './Button';
Loading…
Cancel
Save