import { Pressable, StyleSheet, Text, View } from 'react-native';
type SectionHeaderProps = {
title: string;
onPress?: () => void;
};
export function SectionHeader({ title, onPress }: SectionHeaderProps) {
if (onPress) {
return (
{title}
);
}
return (
{title}
);
}
const styles = StyleSheet.create({
container: {
marginTop: 28,
marginBottom: 18,
},
title: {
fontSize: 18,
fontWeight: '800',
letterSpacing: 1.2,
color: '#F5F8FF',
},
});