@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
24 lines (23 loc) • 904 B
TypeScript
export default Badge;
/**
* @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 Badge(props: any): JSX.Element;
declare namespace Badge {
let displayName: string;
namespace propTypes {
let children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
let className: PropTypes.Requireable<string>;
let color: PropTypes.Requireable<string>;
let rounded: PropTypes.Requireable<boolean>;
}
namespace defaultProps {
let children_1: any;
export { children_1 as children };
let className_1: string;
export { className_1 as className };
let rounded_1: boolean;
export { rounded_1 as rounded };
}
}
import PropTypes from 'prop-types';