Files
react-test/docs/data/system/typography/LetterSpacing.tsx

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

12 lines
340 B
TypeScript
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
import Typography from '@mui/material/Typography';
import Box from '@mui/material/Box';
export default function LetterSpacing() {
return (
<Typography component="div">
<Box sx={{ letterSpacing: 6, m: 1 }}>Letter Spacing 6px.</Box>
<Box sx={{ letterSpacing: 10, m: 1 }}>Letter Spacing 10px.</Box>
</Typography>
);
}