@rnwonder/react-date-picker
Version:
A lightweight, customizable, and accessible date picker component for React applications.
16 lines (14 loc) • 530 B
TypeScript
import { TimeView, TimeClassName } from '../../interface/general';
import { default as React } from 'react';
interface ITimeAnalogGroupTopProps extends TimeClassName {
view: TimeView;
handlePrev: () => void;
handleNext: () => void;
arrowsColor?: string;
prevIcon?: React.ReactNode;
nextIcon?: React.ReactNode;
allowedView?: TimeView[];
noButtonAnimation?: boolean;
}
export declare const TimeAnalogGroupTop: (props: ITimeAnalogGroupTopProps) => import("react/jsx-runtime").JSX.Element;
export {};