You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prevents generating `undefined` style properties e.g
`{ fontSize: '16px', fontFamily: undefined }`
The above props would generate the following styles:
```
font-size: 16px;
font-family: undefined;
```
The new feature is filtering false props before generating and injecting the styles. The new styles now look something like this:
```
font-size: 16px;
```
More details: styled-components#102
0 commit comments