You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
588 B
18 lines
588 B
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>;
|