import React from 'react'; interface Props { alt?: string; src: string; width?: number | undefined; } const Logo = ({ alt = 'logo', width = undefined, src }: Props) => { return ; }; export default Logo;