@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
28 lines (27 loc) • 793 B
TypeScript
/**
* MSKCC DSM 2021, 2023
*/
import PropTypes from 'prop-types';
import { type HTMLAttributes } from 'react';
export interface DatePickerSkeletonProps extends HTMLAttributes<HTMLDivElement> {
range?: boolean;
}
declare const DatePickerSkeleton: {
({ range, id, className, ...rest }: DatePickerSkeletonProps): JSX.Element;
propTypes: {
/**
* Specify an optional className to add.
*/
className: PropTypes.Requireable<string>;
/**
* Specify the id to add.
*/
id: PropTypes.Requireable<string>;
/**
* Specify whether the skeleton should be of range date picker.
*/
range: PropTypes.Requireable<boolean>;
};
};
export default DatePickerSkeleton;
export { DatePickerSkeleton };