@flexis/ui
Version:
Styleless React Components
15 lines • 575 B
TypeScript
import { HTMLAttributes, ReactNode, PureComponent } from 'react';
import PropTypes from 'prop-types';
import { CombinePropsAndAttributes } from '../../helpers';
interface ISelfProps {
children: ReactNode;
}
export declare type ITableBodyProps = CombinePropsAndAttributes<ISelfProps, HTMLAttributes<HTMLTableSectionElement>>;
export declare class TableBody extends PureComponent<ITableBodyProps> {
static propTypes: {
children: PropTypes.Validator<PropTypes.ReactNodeLike>;
};
render(): JSX.Element;
}
export {};
//# sourceMappingURL=TableBody.d.ts.map