UNPKG

@uiw/react-native

Version:
21 lines (20 loc) 659 B
import React from 'react'; import { ViewStyle, GestureResponderHandlers } from 'react-native'; import { TabsItemIconTypes } from '../Tabs/TabsItem'; export interface SpeedDialItemProps { /** 右边 显示的图标 */ icon: TabsItemIconTypes; /** 左边文字 */ title: JSX.Element | string | number; /** 左边文字盒子样式 */ titleStyle?: ViewStyle; /** 右边图标盒子样式 */ iconStyle?: ViewStyle; /** * 点击右边时触发 */ onPress?: Function; move?: GestureResponderHandlers; } declare function SpeedDialItem(props: SpeedDialItemProps): React.JSX.Element; export default SpeedDialItem;