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 { Pressable } from 'react-native' export interface Props { type?: 'icon' | 'text' content?: string native?: boolean background?: boolean onPress: () => void } const HeaderLeft: React.FC = ({ type = 'icon', content, native = true, background = false, onPress }) => { const { colors } = useTheme() const children = () => { switch (type) { case 'icon': return ( ) case 'text': return ( ) } } return ( ) } export default HeaderLeft