react-native-share
Version:
Social share, sending simple data to other apps.
11 lines (10 loc) • 350 B
TypeScript
import * as React from 'react';
import { ViewStyle, StyleProp } from 'react-native';
export interface ShareSheetProps {
visible: boolean;
onCancel: () => void;
style?: StyleProp<ViewStyle>;
overlayStyle?: StyleProp<ViewStyle>;
}
declare const ShareSheet: React.FC<React.PropsWithChildren<ShareSheetProps>>;
export default ShareSheet;