import IconButton from '@mui/material/IconButton'; import Icon from '@mui/material/Icon'; import {useTheme} from '@mui/material/styles'; import {useTranslation} from 'react-i18next'; import ListItemSecondaryAction from '@mui/material/ListItemSecondaryAction'; interface Props { onClick: () => void; tabIndex?: number; disabled: boolean; } const AssignButton = (props: Props) => { const {onClick, tabIndex} = props; const theme = useTheme(); const {t} = useTranslation(); return ( {t('passenger.actions.place')} chevron_right ); }; export default AssignButton;