mantine-datepicker-jalali
Version:
jalali datepicker of mantine library
21 lines • 1.04 kB
TypeScript
import React from 'react';
import { DefaultProps, Selectors } from '@mantine/core';
import useStyles from './PickerControl.styles';
export declare type PickerControlStylesNames = Selectors<typeof useStyles>;
export interface PickerControlProps extends DefaultProps<PickerControlStylesNames>, React.ComponentPropsWithoutRef<'button'> {
__staticSelector?: string;
/** Control children */
children?: React.ReactNode;
/** Determines whether control should be disabled */
disabled?: boolean;
/** Determines whether control should have selected styles */
selected?: boolean;
/** Determines whether control is selected in range */
inRange?: boolean;
/** Determines whether control is first in range selection */
firstInRange?: boolean;
/** Determines whether control is last in range selection */
lastInRange?: boolean;
}
export declare const PickerControl: React.ForwardRefExoticComponent<PickerControlProps & React.RefAttributes<HTMLButtonElement>>;
//# sourceMappingURL=PickerControl.d.ts.map