// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc. // SPDX-License-Identifier: BUSL-1.1 // NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE. import React from 'react'; import { useSafeAreaInsets } from 'react-native-safe-area-context'; import { useNavigation } from '@react-navigation/native'; import { HelpCircle } from '@tamagui/lucide-icons'; import { NavBar } from '@/components/NavBar/BaseNavBar'; import { slate100 } from '@/utils/colors'; import { dinot } from '@/utils/fonts'; export const DocumentFlowNavBar = ({ title, titleFontFamily = dinot, fontSize = 17, }: { title: string; titleFontFamily?: string; fontSize?: number; }) => { const navigation = useNavigation(); const { top } = useSafeAreaInsets(); return ( navigation.goBack()} /> {title} } onPress={() => { /* Handle help action, button is transparent for now as we dont have the help screen ready */ }} /> ); };