import Image from "next/image"; type Props = { darkSrc: string; lightSrc: string; height?: number; width?: number; }; export function Logo({ lightSrc, darkSrc, height = 40, width = 147.5 }: Props) { return ( <> {darkSrc && (
logo
)} {lightSrc && (
logo
)} ); }