UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

16 lines (15 loc) 467 B
/** * MSKCC 2021, 2023 */ import PropTypes from 'prop-types'; import { FormGroupProps } from '../FormGroup/FormGroup'; export interface LoginFormGroupProps extends FormGroupProps { } export declare const LoginFormGroup: { ({ children, className, ...other }: LoginFormGroupProps): JSX.Element; displayName: string; propTypes: { className: PropTypes.Requireable<string>; children: PropTypes.Requireable<PropTypes.ReactNodeLike>; }; };