8 lines
187 B
TypeScript
8 lines
187 B
TypeScript
import { TouchableOpacityProps } from 'react-native';
|
|
|
|
export interface PrimaryButtonProps extends TouchableOpacityProps {
|
|
title: string;
|
|
isLoading?: boolean;
|
|
disabled?: boolean;
|
|
}
|