Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
277 B
JavaScript
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
import Box from '@mui/material/Box';
export default function Variant() {
return (
<div>
<Box sx={{ typography: 'subtitle2' }}>subtitle2</Box>
<Box sx={{ typography: 'body1' }}>body1</Box>
<Box sx={{ typography: 'body2' }}>body2</Box>
</div>
);
}