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, ...rest }) => (
)
const LogoSvg = styled.svg`
height: 60px;
`
Logo.propTypes = {
colour: string,
active: bool,
}
export const NdcLogo = ({ colour = colours.offwhite, ...rest }) => (
)
export const RFLogo = ({ colour = colours.offwhite, ...rest }) => (
)
export default Logo