import { Link, SxProps, Theme, Typography } from "@mui/material"; interface Props { text: string; linkHref: string; isHighlighted?: boolean; sx?: SxProps; } export default function UnderlinedLink({ text, linkHref, isHighlighted = false, sx }: Props) { return ( {text} ); }