-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle theme method spreads in the sx prop
- Loading branch information
1 parent
afb8d84
commit a7f9012
Showing
7 changed files
with
63 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
@keyframes r1ub6j9g{from{transform:rotate(360deg);}to{transform:rotate(0deg);}} | ||
.c1y26wbb{color:red;animation:r1ub6j9g 2s ease-out 0s infinite;} | ||
.ct00dwm{color:red;font-size:3rem;} | ||
.soujkwr{display:block;position:absolute;border-radius:inherit;background-color:currentColor;opacity:0.38;font-size:3rem;} | ||
.c1y26wbb{color:var(--mui-palette-primary-main);animation:r1ub6j9g 2s ease-out 0s infinite;} | ||
.ct00dwm{color:var(--mui-palette-primary-main);font-size:var(--mui-size-font-h1);} | ||
.soujkwr{display:block;position:absolute;border-radius:inherit;background-color:currentColor;opacity:0.38;font-size:var(--mui-size-font-h1);} | ||
.soujkwr-1{font-size:3rem;} | ||
.s14dtw5g{display:block;opacity:0.38;font-size:3rem;} | ||
.s14dtw5g{display:block;opacity:0.38;font-size:var(--mui-size-font-h1);} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { SliderRail } from './styled.input'; | ||
|
||
function App2(props) { | ||
return ( | ||
<SliderRail | ||
sx={({ theme }) => ({ | ||
mb: 1, | ||
...theme.applyStyles('dark', { | ||
color: 'white', | ||
}), | ||
})} | ||
/> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.soujkwr.sqyvpfz{margin-bottom:8px;}@media (prefers-color-scheme: dark){.soujkwr.sqyvpfz{color:white;}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { SliderRail } from './styled.input'; | ||
function App2(props) { | ||
return <SliderRail sx={"sqyvpfz"} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters