Commit 13ef7cdb authored by tom's avatar tom

update secondary button styles

parent 6f8d172a
...@@ -17,18 +17,20 @@ const variantPrimary = { ...@@ -17,18 +17,20 @@ const variantPrimary = {
}, },
}; };
const variantSecondary = { const variantSecondary: SystemStyleFunction = (props) => {
color: 'blue.600', return {
fontWeight: 600, color: mode('blue.600', 'blue.300')(props),
borderColor: 'blue.600', fontWeight: 600,
border: '2px solid', borderColor: mode('blue.600', 'blue.300')(props),
_hover: { border: '2px solid',
color: 'blue.400', _hover: {
borderColor: 'blue.400', color: 'blue.400',
}, borderColor: 'blue.400',
_disabled: { },
opacity: 0.2, _disabled: {
}, opacity: 0.2,
},
};
}; };
const variantIcon: SystemStyleFunction = (props) => { const variantIcon: SystemStyleFunction = (props) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment