import * as React from "react"; import { LogoProps } from "./typings/Logo"; const Logo: React.FunctionComponent = ({ height = 40, color = "#000000" }) => { return ( ); }; export default Logo;