cdbreact
Version:
Elegant UI kit and reusable components for building mobile-first, responsive websites and web apps
21 lines (20 loc) • 575 B
TypeScript
import React from 'react';
import PropTypes from 'prop-types';
interface Props {
tag?: any;
children?: React.ReactNode;
className?: string;
}
declare const PopoverBody: {
(props: Props): React.JSX.Element;
propTypes: {
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
className: PropTypes.Requireable<string>;
tag: PropTypes.Requireable<string | ((...args: any[]) => any)>;
};
defaultProps: {
tag: string;
};
};
export default PopoverBody;
export { PopoverBody as CDBPopoverBody };