I want to move my shared components to npm so I can use them in my projects easily. I use the isomorphic-style-loader to handle styling but when I want to move these shared components to npm and import them into my projects I get the error _getCss not found because I had to remove style-loader from webpack.config of my shared components and set isomorphic-style-loader library as a peer dependency in package.json. How can I build my shared components with withStyles and published them on npm ??! Is there any better way to handle styles when it comes to publishing to npm???