import { type StyleProp, StyleSheet, type TextProps, type TextStyle, } from 'react-native'; import { Text } from '../Text'; type Props = Omit & { tintColor?: string; children?: string; style?: StyleProp; }; export function Label({ tintColor, style, ...rest }: Props) { return ( ); } const styles = StyleSheet.create({ label: { textAlign: 'center', backgroundColor: 'transparent', }, });