cdbreact
Version:
Elegant UI Kit and reusable components for building mobile-first, responsive webistes and web apps
24 lines (23 loc) • 634 B
TypeScript
import PropTypes from "prop-types";
import React from "react";
interface Props {
children?: React.ReactNode;
color?: string;
rows?: any;
columns?: any;
textWhite?: boolean;
}
declare const TableBody: {
(props: Props): JSX.Element;
propTypes: {
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
color: PropTypes.Requireable<string>;
rows: PropTypes.Requireable<object[]>;
textWhite: PropTypes.Requireable<boolean>;
};
defaultProps: {
textWhite: boolean;
};
};
export default TableBody;
export { TableBody as CDBTableBody };