Files
www_ourworld_new/src/components/Logo_darkbg.tsx

12 lines
229 B
TypeScript

export function Logo_darkbg(props: React.ComponentPropsWithoutRef<'img'>) {
return (
<img
src="/assets/logos/logo_light.svg"
width={132}
height={32}
alt="OurWorld logo"
{...props}
/>
)
}