import { useTheme } from "@mui/material"; interface Props { width: number; color: string; } export default function PenaLogo({ width, color }: Props) { const theme = useTheme(); return ( ); }