import React from 'react'; import './logo.css'; interface LogoProps { variant: 'default' | 'animated' | 'gray'; } /** * Logo * * As link to homepage, used in top header */ const Logo: React.FunctionComponent = (props) => { const variantClass = props.variant === 'default' ? '' : props.variant; return (

Colouring London

); }; const LogoGrid: React.FunctionComponent = () => (
); export { Logo };