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