import { Link, LinkProps, Typography, useTheme } from "@mui/material"; import ArrowForwardIcon from '@mui/icons-material/ArrowForward'; export function PenaLink(props: LinkProps) { const theme = useTheme(); const propsSx = props.sx; delete props.sx; return ( {props.children} ); }