import { Link as MUILinkIcon } from '@mui/icons-material'; import { Link as MUILink } from '@mui/material'; import { FC } from 'react'; import { GREY, TEXT } from '../lib/consts/DEFAULT_THEME'; import FlexBox from './FlexBox'; const Link: FC = ({ children, sx: linkSx, ...restLinkProps }) => ( {children} ); export default Link;