UNPKG

@platformbuilders/react-native-ui

Version:
16 lines 507 B
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