Files
react-test/docs/data/joy/components/link/LinkUnderline.js

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

19 lines
430 B
JavaScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import Box from '@mui/joy/Box';
import Link from '@mui/joy/Link';
export default function LinkUnderline() {
return (
<Box sx={{ display: 'flex', gap: 2, flexWrap: 'wrap' }}>
<Link href="#underline" underline="always">
Always
</Link>
<Link href="#underline" underline="hover">
Hover
</Link>
<Link href="#underline" underline="none">
None
</Link>
</Box>
);
}