import React from "react"; import { Platform, type StyleProp, StyleSheet, Text, type TextStyle, View, type ViewStyle, } from "react-native"; type Props = { title?: string; containerStyle?: StyleProp; titleStyle?: StyleProp; }; const ios = Platform.OS === "ios"; export const Subtitle: React.FC = (props) => { return ( {props.title} ); }; const styles = StyleSheet.create({ container: { height: 48, paddingHorizontal: 16, justifyContent: "center", backgroundColor: "white", }, title: { color: "rgba(0, 0, 0, .54)", fontSize: 14, fontWeight: ios ? "600" : "500", }, }); export default Subtitle;