import type { SxProps, Theme } from '@mui/material' import type { FC, ReactNode } from 'react' import { ActionRowContainer, ActionRowLabel } from './ActionRow.style.js' interface ActionRowProps { message: string startAdornment: ReactNode endAdornment?: ReactNode sx?: SxProps } export const ActionRow: FC = ({ message, startAdornment, endAdornment, sx, }) => { return ( {startAdornment} {message} {endAdornment} ) }