import Box from '@mui/material/Box'; const row = { display: 'flex', flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', }; const labelColumn = { fontWeight: 'bold', width: '25%', }; const valueColumn = { width: '75%', }; const cardTitle = { fontWeight: 'bold', fontSize: '1.2rem', display: 'flex', flexDirection: 'row', justifyContent: 'center', }; export default function AdminQueueItemCard({ queue_data }) { return ( {`non-urgent-case ${queue_data.id}`} Name {queue_data.name || ''} HKID {queue_data.hkid || '-'} Mobile {queue_data.mobile || '-'} ); }