* chore: remove unused assets

* feat: about ontime

* refactor: cleanup unused
This commit is contained in:
Carlos Valente
2023-04-25 22:31:56 +02:00
committed by GitHub
parent 8f834fed35
commit 0b94fc71a4
39 changed files with 307 additions and 112 deletions
@@ -0,0 +1,18 @@
import { ReactNode } from 'react';
import { IoOpenOutline } from '@react-icons/all-files/io5/IoOpenOutline';
import style from './ModalLink.module.scss';
interface ModalLinkProps {
href: string;
children: ReactNode;
}
export default function ModalLink(props: ModalLinkProps) {
const { href, children } = props;
return (
<a href={href} target='_blank' rel='noreferrer' className={style.link}>
{children} <IoOpenOutline />
</a>
);
}