import List from '@mui/joy/List'; import ListItem from '@mui/joy/ListItem'; import ListItemDecorator from '@mui/joy/ListItemDecorator'; import Radio from '@mui/joy/Radio'; import RadioGroup from '@mui/joy/RadioGroup'; import Person from '@mui/icons-material/Person'; import People from '@mui/icons-material/People'; import Apartment from '@mui/icons-material/Apartment'; export default function RadioPositionEnd() { return ( {['Individual', 'Team', 'Enterprise'].map((item, index) => ( {[, , ][index]} ({ sx: (theme) => ({ ...(checked && { inset: -1, border: '2px solid', borderColor: theme.vars.palette.primary[500], }), }), }), }} /> ))} ); }