import { FC } from 'react' import { useTheme } from '@baseapp-frontend/design-system/providers/native' import { Ionicons } from '@expo/vector-icons' import { TouchableOpacity } from 'react-native' import { createStyles } from './styles' import type { FabButtonProps } from './types' const FabButton: FC = ({ iconName, iconSize = 28, iconColor, style, ...touchableProps }) => { const theme = useTheme() const styles = createStyles(theme) const finalIconColor = iconColor ?? theme.colors?.primary?.contrast ?? '#fff' return ( ) } export default FabButton