import Sheet from '@mui/joy/Sheet'; import Stack from '@mui/joy/Stack'; import { styled } from '@mui/joy/styles'; const Item = styled(Sheet)(({ theme }) => ({ ...theme.typography['body-sm'], textAlign: 'center', fontWeight: theme.fontWeight.md, color: theme.vars.palette.text.secondary, border: '1px solid', borderColor: theme.palette.divider, padding: theme.spacing(1), borderRadius: theme.radius.md, })); export default function DirectionStack() { return (
Item 1 Item 2 Item 3
); }