react-native-navigation-drilldown
Version:
Drilldown screens to use with react-navigation
9 lines (8 loc) • 322 B
TypeScript
import * as React from 'react';
import { ImageBackgroundProperties, StyleProp, ViewStyle } from 'react-native';
export interface IconProps extends ImageBackgroundProperties {
onPress?: () => void;
wrapperStyle?: StyleProp<ViewStyle>;
}
declare const Icon: React.StatelessComponent<IconProps>;
export default Icon;