@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
20 lines (19 loc) • 611 B
TypeScript
/**
* MSKCC 2021, 2023
*/
import PropTypes from 'prop-types';
import { type ComponentProps } from 'react';
export type LoginFormProps = ComponentProps<'form'>;
export declare const LoginForm: {
({ className, children, ...other }: LoginFormProps): JSX.Element;
propTypes: {
/**
* Provide children to be rendered inside of the <form> element
*/
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
/**
* Provide a custom className to be applied on the containing <form> node
*/
className: PropTypes.Requireable<string>;
};
};