@arpitbhalla/rneui-base-dev
Version:
Cross Platform React Native UI Toolkit
18 lines (17 loc) • 588 B
TypeScript
import React from 'react';
import { PressableProps } from 'react-native';
import { FABProps } from '../FAB';
import { IconNode } from '../Icon';
import { RneFunctionComponent } from '../helpers';
export interface SpeedDialProps extends FABProps {
isOpen: boolean;
onOpen?: () => void;
onClose?: () => void;
openIcon?: IconNode;
overlayColor?: string;
children?: React.ReactElement[];
transitionDuration?: number;
backdropPressableProps?: PressableProps;
labelPressable?: boolean;
}
export declare const SpeedDial: RneFunctionComponent<SpeedDialProps>;