import { FC } from 'react'; import { Box as MUIBox, Link as MUILink, LinkProps as MUILinkProps, } from '@mui/material'; import { Link as LinkIcon } from '@mui/icons-material'; import { GREY, TEXT } from '../lib/consts/DEFAULT_THEME'; export type LinkProps = MUILinkProps; const Link: FC = ({ children, sx, ...restLinkProps }) => ( {children} ); export default Link;