'use client' import { FC } from 'react' import MuiLink from '@mui/material/Link' import NextLink from 'next/link' import { DefaultLinkProps } from './types' const DefaultLink: FC = ({ href, children, extraLinkProps, ...rest }) => { const isExternal = href?.startsWith('http') if (isExternal) { return ( {children} ) } return ( {children} ) } export default DefaultLink