import React, { FC } from 'react'; import IconButton from '@mui/material/IconButton'; import PlayArrowIcon from '@mui/icons-material/PlayArrow'; import globalize from 'scripts/globalize'; interface PlayArrowIconButtonProps { className: string; action: string; title: string; iconClassName?: string; } const PlayArrowIconButton: FC = ({ className, action, title, iconClassName }) => { return ( ); }; export default PlayArrowIconButton;