import React from 'react'; import styled from 'styled-components'; import { colors } from '../../../constants/colors'; export interface LogoProps extends React.SVGProps { width?: string; height?: string; negative?: boolean; } const LogoSvg = styled.path` transition: fill 0.3s ease; fill: ${({ negative }) => (negative ? colors.white : colors.brandDecorative)}; `; const Logo = ({ negative, ...rest }: LogoProps) => ( Zopa Logo ); Logo.defaultProps = { negative: false, height: '100%', width: '100%', }; export default Logo;