UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

23 lines (22 loc) 623 B
/** * MSKCC DSM 2021, 2023 */ import PropTypes from 'prop-types'; import React from 'react'; export interface RadioButtonSkeletonProps extends React.InputHTMLAttributes<HTMLInputElement> { /** * Specify an optional className to add. */ className?: string; } declare function RadioButtonSkeleton(props: RadioButtonSkeletonProps): JSX.Element; declare namespace RadioButtonSkeleton { var propTypes: { /** * Specify an optional className to add. */ className: PropTypes.Requireable<string>; }; } export default RadioButtonSkeleton; export { RadioButtonSkeleton };