import Icon from '@components/Icon' import CustomText from '@components/Text' import { StyleConstants } from '@utils/styles/constants' import { useTheme } from '@utils/styles/ThemeManager' import React from 'react' import { View } from 'react-native' export interface Props { content?: string inverted?: boolean onPress?: () => void dropdown?: boolean } // Used for Android mostly const HeaderCenter: React.FC = ({ content, inverted = false, onPress, dropdown = false }) => { const { colors } = useTheme() return ( ) } export default HeaderCenter