We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baadf6c commit 18ff042Copy full SHA for 18ff042
src/styled-components/Tr.js
@@ -16,7 +16,7 @@ const StyledTr = styled(Tr).attrs(({ top, left }) => ({
16
display: flex;
17
width: auto;
18
padding: 0;
19
- height: auto;
+ height: ${props => props.height ? `${props.height}px` : 'auto'};
20
position: relative;
21
background: none;
22
position: ${props => props.position || 'relative'};
0 commit comments