import React, { FC } from 'react'; import IconButton from '@mui/material/IconButton'; interface RightIconButtonsProps { className?: string; id: string; icon: string; title: string; } const RightIconButtons: FC = ({ className, id, title, icon }) => { return ( {icon} ); }; export default RightIconButtons;