@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
23 lines (22 loc) • 721 B
TypeScript
/**
* MSKCC 2021, 2023
*/
import React from 'react';
import PropTypes from 'prop-types';
export type HeaderControlProps = {
children?: React.ReactNode;
className?: string;
/**
* This prop is a boolean value that determines whether divider to the left of the control should be shown or not.
*/
noDivider?: boolean;
};
export declare function HeaderControl({ children, className, noDivider, }: HeaderControlProps): JSX.Element;
export declare namespace HeaderControl {
var displayName: string;
var propTypes: {
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
className: PropTypes.Requireable<string>;
noDivider: PropTypes.Requireable<boolean>;
};
}