import * as React from 'react'; import ExpandIcon from './ExpandIcon'; interface Props { className?: string; } const EmptyExpandLink: React.FC = props => { return ; }; export default EmptyExpandLink;