Theme
MUI Component Override

Component Override

Material UI components override inside the src/theme/components directory.

Let's say you want to change the Mui Button component style in this file theme/components/button.jsx. The changes will be applied globally on the Mui Button component


_13
├── theme/
_13
├ ├── components/
_13
├ ├ ├── accordion.jsx
_13
├ ├ ├── alert.jsx
_13
├ ├ ├── autocomplete.jsx
_13
├ ├ ├── avatar.jsx
_13
├ ├ ├── backdrop.jsx
_13
├ ├ ├── badge.jsx
_13
├ ├ ├── breadcrumbs.jsx
_13
├ ├ ├── button.jsx
_13
├ ├ ├── chip.jsx
_13
├ ├ ├── many more mui components
_13
├ ├ ├── index.jsx

Reference