segmented-picker-aned
Version:
Selection picker wheel with multi-column support and optional native dependencies.
18 lines (17 loc) • 816 B
TypeScript
import React from 'react';
interface Props {
cancelText: string;
cancelTextColor: string;
confirmText: string;
confirmTextColor: string;
toolbarBackground: string;
toolbarBorderColor: string;
onConfirm: () => void;
onCancel: () => void;
}
declare const _default: ({ cancelText, cancelTextColor, confirmText, confirmTextColor, toolbarBackground, toolbarBorderColor, onConfirm, onCancel, }: Props) => React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>;
/**
* Top action bar that displays above the picker modal which allows a user to confirm
* their selections and close the modal.
*/
export default _default;