// @flow import * as React from 'react'; import { bdlBoxBlue } from '../../styles/variables'; import IconLogo from '../../icons/general/IconLogo'; type Props = { color?: string, height?: number, title?: string | React.Element, width?: number, }; const Logo = ({ color = bdlBoxBlue, height = 25, width = 45, title }: Props) => (
); export default Logo;