import { h } from 'preact' import { bool, string } from 'prop-types' import styled from 'styled-components' import { colours } from '../../assets/theme' const Logo = ({ colour = colours.offwhite, active, ...rest }) => ( ) const LogoSvg = styled.svg` width: 200px; ` Logo.propTypes = { colour: string, active: bool, } export default Logo