UNPKG

@uiw/react-native

Version:
11 lines (10 loc) 355 B
import React from 'react'; import { GestureResponderEvent } from 'react-native'; export interface ActionSheetItemProps { onPress?: (event: GestureResponderEvent) => void; } export interface ActionSheetItemState { } export default class ActionSheetItem extends React.Component<ActionSheetItemProps, ActionSheetItemState> { render(): JSX.Element; }