import { Box, Button } from '@mui/material' import type { MatchCardAction } from './MatchCardViewModel' const MUI_VARIANT: Record = { primary: 'contained', secondary: 'outlined', danger: 'outlined', } interface Props { actions: MatchCardAction[] compact?: boolean } export function MatchActionToolbar({ actions }: Props) { if (actions.length === 0) return null return ( {actions.map(action => ( ))} ) }