Change CSS class naming convention to PascalCase
to align with MUI
#274
Labels
package:react
Issues/PRs related to the `@oxygen-ui/react` package.
Is your suggestion related to an experience? Please describe.
We are currently using
kebab-case
CSS classes for our wrapped components. ex (oxygen-text-field
). But MUI usespascal case
for their components. This results in inconsistent naming conventions across our styles, making it harder to maintain and creating potential conflicts between different design systems.Ex:
Currently MUI supports an experimental ClassName generator but this has some caveats that make it harder to transform the classnames right now.
Describe the improvement
Adopt a
pascal case
CSS class naming convention to align with MUI. (.Oxygen<COMPONENT_NAME>-<VARIANT>
)Ex:
Additional context
N/A
The text was updated successfully, but these errors were encountered: