type Props = { size?: number; }; export default function Logo({ size }: Props) { const sizeRatio = 50 / 100; const width = size || 50; const height = width * sizeRatio; return ( Main Logo ); }