import { FC } from 'react' interface Logo { width?: number height?: number id?: string className?: string } export const Logo: FC = ({ width, height, className }) => { return ( ) }