@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
19 lines (18 loc) • 490 B
TypeScript
/**
* MSKCC 2021, 2023
*/
import PropTypes from 'prop-types';
import React from 'react';
export interface LoginSectionProps {
children: React.ReactNode;
className?: string;
noPadding?: boolean;
}
export declare const LoginSection: {
({ children, className, noPadding, }: LoginSectionProps): JSX.Element;
displayName: string;
propTypes: {
className: PropTypes.Requireable<string>;
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
};
};