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