My dilemma lies in the React component I have created and released as an NPM package. This particular package includes CSS styles that are specific to the component.
I am torn between two options when it comes to including these styles. Should they be part of the Webpack/Rollup bundle for user convenience, or should users be required to import/link the stylesheet manually allowing for easier style overrides and the possibility to replace with their own stylesheet?
Popular libraries have adopted both approaches, leaving me uncertain about which method would be best to implement.