-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP [DataGrid] Extract Material UI slots #7095
base: v6.x
Are you sure you want to change the base?
Conversation
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
@@ -1,7 +1,7 @@ | |||
import * as React from 'react'; | |||
import PropTypes from 'prop-types'; | |||
import clsx from 'clsx'; | |||
import { styled, SxProps, Theme } from '@mui/material/styles'; | |||
import { styled, SxProps, Theme } from '@mui/system'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We discussed it recently with @LukasTy
From what I saw, the styled
from @mui/material
have a slightly different behavior (with a different default them for instance).
Did we check with the core that this would not cause a problem ?
For components with no usage of theme
I guess it's fine.
Part of #6811