import React from 'react'; import { FC } from 'react'; import logo from './logo.png'; import symbol from './symbol.svg'; export interface LogoProps extends React.ImgHTMLAttributes { width?: number; height?: number; small?: boolean; } export const Logo: FC = ({ small, ...props }) => ;