UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

30 lines (29 loc) 905 B
/** * MSKCC DSM 2021, 2023 */ import PropTypes from 'prop-types'; import { HTMLAttributes } from 'react'; export interface NumberInputSkeletonProps extends HTMLAttributes<HTMLDivElement> { /** * Specify an optional className to add to the form item wrapper. */ className?: string; /** * Specify whether the label should be hidden, or not */ hideLabel?: boolean; } declare function NumberInputSkeleton({ hideLabel, className, ...rest }: NumberInputSkeletonProps): JSX.Element; declare namespace NumberInputSkeleton { var propTypes: { /** * Specify an optional className to add to the form item wrapper. */ className: PropTypes.Requireable<string>; /** * Specify whether the label should be hidden, or not */ hideLabel: PropTypes.Requireable<boolean>; }; } export default NumberInputSkeleton;