react-native-share
Version:
Social share, sending simple data to other apps.
12 lines • 422 B
TypeScript
import * as React from 'react';
import { ImageSourcePropType, StyleProp, TextStyle, ViewStyle } from 'react-native';
export interface ButtonProps {
onPress: () => void;
iconSrc: ImageSourcePropType;
buttonStyle?: StyleProp<ViewStyle>;
textStyle?: StyleProp<TextStyle>;
children: React.ReactNode;
}
declare const Button: React.FC<ButtonProps>;
export default Button;
//# sourceMappingURL=Button.d.ts.map