UNPKG

react-native-navigation-drilldown

Version:
9 lines (8 loc) 322 B
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;