We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6000ac0 commit edb7191Copy full SHA for edb7191
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@netdata/netdata-ui",
3
- "version": "2.3.21",
+ "version": "2.3.22",
4
"description": "netdata UI kit",
5
"main": "./lib/index.js",
6
"files": [
src/components/button/styled.js
@@ -110,7 +110,9 @@ export const StyledButton = styled.button.attrs(props => ({
110
? getSizeBy(16)
111
: getSizeBy(props.tiny ? 2 : props.small ? 3 : 4)};
112
height: ${props =>
113
- props.hasLabel
+ props.height
114
+ ? props.height
115
+ : props.hasLabel
116
? getSizeBy(props.small ? 4 : 5)
117
118
0 commit comments