import { Fragment } from 'react'; import { Link } from 'react-router-dom'; import { Icon } from '../..'; import classes from './ActionButton.module.css'; interface Props { name: string; icon: string; link?: string; handler?: () => void; } export const ActionButton = (props: Props): JSX.Element => { const body = ( <>