import React, { forwardRef, HTMLAttributes } from 'react' import PropTypes from 'prop-types' export const CTableCaption = forwardRef< HTMLTableCaptionElement, HTMLAttributes >(({ children, ...props }, ref) => { return ( {children} ) }) CTableCaption.propTypes = { children: PropTypes.node, } CTableCaption.displayName = 'CTableCaption'