Web: Fixed default value fontWeight of GroupButton component

This commit is contained in:
Ilya Oleshko 2019-06-26 11:28:24 +03:00
parent 0712046bf4
commit 8a0829a85d

View File

@ -139,7 +139,7 @@ GroupButton.defaultProps = {
isSeparator: false,
tabIndex: -1,
action: (e) => console.log('Button "' + e.target.innerText + '" clicked!'),
fontWeight: 600
fontWeight: '600'
};
export default GroupButton