Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 342 Bytes

nice-apples-arrive.md

File metadata and controls

18 lines (15 loc) · 342 Bytes
@emotion/native @emotion/primitives @emotion/primitives-core
patch
patch
patch

Fixed an issue with styles being lost for nested factory calls like:

const bgColor = color => css`
  background-color: ${color};
`

const Text = styled.Text`
  color: hotpink;
  ${({ backgroundColor }) => bgColor(backgroundColor)};
`