import React, { SFC } from 'react'; import IconButton from '@material-ui/core/IconButton'; import ExpandMoreIcon from '@material-ui/icons/ExpandMore'; import classNames from 'classnames'; import { withTranslate, Translate } from 'ra-core'; interface Props { classes: { expandIcon: string; expanded: string; }; expanded: boolean; expandContentId: string; translate: Translate; locale: string; } const ExpandRowButton: SFC = ({ classes, expanded, expandContentId, translate, ...props }) => { return ( ); }; export default withTranslate(ExpandRowButton);