import { StyleSheet, View } from 'react-native'; import Svg, { Path } from 'react-native-svg'; type HeaderProps = { title?: string; }; export function Header({ title = 'BESTAI' }: HeaderProps) { return ( ); } const styles = StyleSheet.create({ container: { alignItems: 'center', marginBottom: 28, }, logo: { width: 89, height: 13, }, });