sgcart/app/components/button/button.props.ts
2026-07-03 13:10:46 +05:30

10 lines
278 B
TypeScript

import { GestureResponderEvent, StyleProp, ViewStyle, TextStyle } from 'react-native';
export interface ButtonProps {
title: string;
onPress: (event: GestureResponderEvent) => void;
style?: StyleProp<ViewStyle>;
textStyle?: StyleProp<TextStyle>;
loading?: boolean;
}