Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import config from '@automattic/calypso-config';
import JetpackLogo from 'calypso/components/jetpack-logo';
import NavigationHeaderImpr, {
HeaderProps,
} from 'calypso/components/navigation-header/navigation-header';
import { STATS_PRODUCT_NAME, STATS_PRODUCT_NAME_IMPR } from '../../constants';
function PageHeader( { titleProps, ...otherProps }: HeaderProps ) {
const isOdysseyStats = config.isEnabled( 'is_running_in_jetpack_site' );
if ( isOdysseyStats ) {
return (
<NavigationHeaderImpr
className="stats__section-header modernized-header"
titleProps={ {
title: STATS_PRODUCT_NAME,
titleLogo: <JetpackLogo size={ 24 } monochrome={ false } />,
...titleProps,
} }
{ ...otherProps }
/>
);
}
return (
<NavigationHeaderImpr
className="stats__section-header modernized-header"
titleProps={ {
title: STATS_PRODUCT_NAME_IMPR,
...titleProps,
} }
{ ...otherProps }
/>
);
}
export default PageHeader;