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