How to wrap up Ant Design with Styled Components and TypeScript?

前端 未结 5 1617
独厮守ぢ
独厮守ぢ 2021-02-13 15:47

I want to wrap up my ant-design components with styled-components, I know that this is possible (https://gist.github.com/samuelcastro/0ff7db4fd54ce2b80cd1c34a85b40c08) however I

5条回答
  •  天命终不由人
    2021-02-13 16:27

    The above solutions didn't work for me, this solved it though.

    const Button = styled((props: NativeButtonProps) => )``;
    

提交回复
热议问题