UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

17 lines (16 loc) 397 B
/** * MSKCC 2021, 2023 */ import PropTypes from 'prop-types'; export interface LoginDividerProps { className?: string; noText?: boolean; } export declare const LoginDivider: { ({ className, noText }: LoginDividerProps): JSX.Element; displayName: string; propTypes: { className: PropTypes.Requireable<string>; noText: PropTypes.Requireable<boolean>; }; };