import { Link as RouterLink } from 'react-router-dom'; import { Link, Typography } from '@mui/material'; import { FC } from 'react'; interface IWidgetFooterLinkProps { to: string; } export const WidgetFooterLink: FC = ({ children, to, }) => { return ( theme.spacing(2.5), marginTop: 'auto', justifySelf: 'flex-end', }} > {children} ); };