UNPKG

@100mslive/react-native-room-kit

Version:

100ms Room Kit provides simple & easy to use UI components to build Live Streaming & Video Conferencing experiences in your apps.

12 lines 511 B
import React from 'react'; import type { PressableProps, TextStyle, ViewStyle } from 'react-native'; export type MenuItemProps = { children: React.ReactNode; disabled?: boolean; disabledTextColor?: string; pressColor?: string; style?: ViewStyle; textStyle?: TextStyle; } & PressableProps; export declare function MenuItem({ children, disabled, disabledTextColor, onPress, pressColor, style, textStyle, ...props }: MenuItemProps): React.JSX.Element; //# sourceMappingURL=MenuItem.d.ts.map