UNPKG

cdbreact

Version:

Elegant UI kit and reusable components for building mobile-first, responsive websites and web apps

23 lines (22 loc) 618 B
import React from 'react'; import PropTypes from 'prop-types'; interface Props { cascade?: boolean; className?: string; tag?: string | Function; style?: React.CSSProperties; children?: React.ReactNode; } declare const CardBody: { (props: Props): React.JSX.Element; propTypes: { cascade: PropTypes.Requireable<boolean>; className: PropTypes.Requireable<string>; tag: PropTypes.Requireable<string | ((...args: any[]) => any)>; }; defaultProps: { tag: string; }; }; export default CardBody; export { CardBody as CDBCardBody };