UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

31 lines (30 loc) 854 B
/** * MSKCC DSM 2021, 2023 */ import PropTypes from 'prop-types'; import React from 'react'; export interface TextAreaSkeletonProps extends React.InputHTMLAttributes<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 const TextAreaSkeleton: { (props: TextAreaSkeletonProps): JSX.Element; 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 TextAreaSkeleton; export { TextAreaSkeleton };