@mui/codemod
Version:
Codemod scripts for Material UI.
19 lines (18 loc) • 359 B
JavaScript
;
const Component = styled.div(({
theme
}) => ({
...theme.typography.caption,
variants: [{
props: {
size: 'small'
},
style: {
marginTop: (theme.vars || theme).spacing(1),
color: theme.palette.primary.main,
...theme.applyStyles("dark", {
color: theme.palette.primary.light
})
}
}]
}));