@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
35 lines (34 loc) • 1.37 kB
TypeScript
export default ListSeparator;
/**
* @deprecated - Components in the legacy folder (/src/legacy) are deprecated. Please use a component from the components folder (/src/components) instead. Legacy components may not follow accessibility standards.
**/
declare function ListSeparator(props: any): JSX.Element;
declare namespace ListSeparator {
namespace propTypes {
let children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
let className: PropTypes.Requireable<string>;
let lineColor: PropTypes.Requireable<string>;
let margin: PropTypes.Requireable<string>;
let text: PropTypes.Requireable<string>;
let textColor: PropTypes.Requireable<string>;
let textPadding: PropTypes.Requireable<string>;
}
namespace defaultProps {
let children_1: any;
export { children_1 as children };
let className_1: any;
export { className_1 as className };
let lineColor_1: any;
export { lineColor_1 as lineColor };
let margin_1: any;
export { margin_1 as margin };
let text_1: any;
export { text_1 as text };
let textColor_1: any;
export { textColor_1 as textColor };
let textPadding_1: any;
export { textPadding_1 as textPadding };
}
let displayName: string;
}
import PropTypes from 'prop-types';