@uiw/react-native
Version:
UIW for React Native
11 lines (10 loc) • 355 B
TypeScript
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;
}