@platformbuilders/react-native-ui
Version:
Platform Builders Shared Components Library
16 lines • 507 B
TypeScript
import { FC } from 'react';
import { StyleProp, ViewStyle, TextStyle } from 'react-native';
import { TouchableType, ButtonVariants } from '../../types';
declare type Props = {
style?: StyleProp<ViewStyle>;
textStyle?: StyleProp<TextStyle>;
rounded?: boolean;
secondary?: boolean;
tertiary?: boolean;
loading?: boolean;
contrast?: boolean;
variant?: ButtonVariants;
} & TouchableType;
declare const Button: FC<Props>;
export default Button;
//# sourceMappingURL=index.d.ts.map