Está tratando de crear un elemento de estilo con un componente indefinido. Es posible que haya olvidado importarlo.

// fails
const ExtendedComponent = styled(OriginalComponent)`
  [Your awesome styles here]
`;

// works
const ExtendedComponent = styled(props => <OriginalComponent {...props} />)`
  [Your awesome styles here]
`;
Radmehr Aghdam