import React from 'react'; import {Pressable} from 'react-native'; import ThemeText from './themeText'; import rpx from '@/utils/rpx'; import {CustomizedColors} from '@/hooks/useColors'; interface IButtonProps { withHorizontalPadding?: boolean; style?: any; hitSlop?: number; children: string; fontColor?: keyof CustomizedColors; onPress?: () => void; } export default function (props: IButtonProps) { const {children, onPress, fontColor, hitSlop, withHorizontalPadding} = props; return ( {children} ); }