// @flow import React from 'react'; import * as ICONS from 'constants/icons'; import { LOGO, LOGO_TEXT_LIGHT, LOGO_TEXT_DARK } from 'config'; import Icon from 'component/common/icon'; type Props = { type: string, currentTheme: string, }; export default function Logo(props: Props) { const { type, currentTheme } = props; if (type === 'small') { return LOGO ? : ; } else { if (LOGO_TEXT_LIGHT && LOGO_TEXT_DARK) { return ( <> {/**/} ); } else { return ; } } } //mobile-hidden