12 lines
340 B
TypeScript
12 lines
340 B
TypeScript
|
|
import { styled } from '@mui/material/styles';
|
||
|
|
|
||
|
|
const Div = styled('div')(({ theme }) => ({
|
||
|
|
...theme.typography.button,
|
||
|
|
backgroundColor: (theme.vars || theme).palette.background.paper,
|
||
|
|
padding: theme.spacing(1),
|
||
|
|
}));
|
||
|
|
|
||
|
|
export default function TypographyTheme() {
|
||
|
|
return <Div>{"This div's text looks like that of a button."}</Div>;
|
||
|
|
}
|