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