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