@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
17 lines (16 loc) • 429 B
TypeScript
/**
* MSKCC DSM 2021, 2023
*/
import PropTypes from 'prop-types';
import { HTMLAttributes } from 'react';
declare const CheckboxSkeleton: {
({ className, ...rest }: HTMLAttributes<HTMLDivElement>): JSX.Element;
propTypes: {
/**
* Specify an optional className to add.
*/
className: PropTypes.Requireable<string>;
};
};
export default CheckboxSkeleton;
export { CheckboxSkeleton };