import { Fragment } from 'react' import type { ReactNode } from 'react' import { Link } from 'react-router-dom' import { PAGES } from 'config' import { client } from 'config/clients' import { Menu } from 'features/Menu' import { Search } from 'features/Search' import { ScoreSwitch } from 'features/MatchSwitches' import { isMatchPage } from 'helpers/isMatchPage' import { HeaderStyled, HeaderGroup, HeaderLogo, Position, } from './styled' import { useProfileColor } from './hooks' type Props = { children?: ReactNode, color?: string, headerImage?: string | null, height?: number, profileId?: number, } export const ProfileHeader = ({ children, color: headerColor, headerImage, height, profileId, }: Props) => { const color = useProfileColor(profileId) return ( {client.showSearch && } {children} ) }