import * as React from 'react'; import { FormattedMessage } from 'react-intl'; import IconLogo from '../../../icons/general/IconLogo'; import messages from '../messages'; import './Logo.scss'; type Props = { url?: string }; function getLogo(url?: string) { if (url === 'box') { return ; } if (typeof url === 'string') { return ; } return (
); } const Logo = ({ url, }: Props) => (
{getLogo(url)}
); export default Logo;