Describe the bug
Properties with object type parameters disappear.
To Reproduce
Sorting this styled component:
const Title = styled.div`
font-size: 50px;
color: ${({ theme }) => theme.colors.primary};
border: 1px solid #ddd;
`;
Results in:
const Title = styled.div`
font-size: 50px;
`;
Expected behavior
const Title = styled.div`
border: 1px solid #ddd;
color: ${({ theme }) => theme.colors.primary};
font-size: 50px;
`;
thank you for reading!
Describe the bug
Properties with object type parameters disappear.
To Reproduce
Sorting this styled component:
Results in:
Expected behavior
thank you for reading!