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: ${props => (props.$size === 'lg' ? '60px' : '32px')};
`
Logo.propTypes = {
colour: string,
active: bool,
}
export const NdcLogo = ({ colour = colours.offwhite, ...rest }) => (
)
export const RFLogo = ({ colour = colours.offwhite, ...rest }) => (
)
export default Logo