@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
21 lines (20 loc) • 530 B
TypeScript
/**
* MSKCC 2021, 2024
*/
import PropTypes from 'prop-types';
import React from 'react';
export interface LoginProps {
className?: string;
children: React.ReactNode;
footer?: React.ReactNode;
twoCol?: boolean;
}
export declare const Login: {
(props: LoginProps): JSX.Element;
displayName: string;
propTypes: {
className: PropTypes.Requireable<string>;
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
footer: PropTypes.Requireable<PropTypes.ReactNodeLike>;
};
};