```tsx const Button = styled.button({}); Button.defaultProps = { type: 'button' }; const AnotherButton = styled(Button, {}); // <- Should also have `{ type: 'button' }` ```