Added ability to delete reports.

This commit is contained in:
Mike Cao 2023-07-30 00:11:26 -07:00
parent ad710cc86a
commit 95d824542f
8 changed files with 159 additions and 40 deletions

View file

@ -0,0 +1,12 @@
import Link from 'next/link';
import { Icon, Icons, Text } from 'react-basics';
import styles from './LinkButton.module.css';
export default function LinkButton({ href, icon, children }) {
return (
<Link className={styles.button} href={href}>
<Icon>{icon || <Icons.ArrowRight />}</Icon>
<Text>{children}</Text>
</Link>
);
}