import { View, Text, type StyleProp, type ViewStyle, type TextStyle, type TextProps, } from 'react-native'; import { styles } from '../style'; type Props = { wrapperStyle?: StyleProp; style?: StyleProp; } & Omit; export const Button = ({ wrapperStyle, style, ...rest }: Props) => ( );