import React, { HTMLAttributes, forwardRef } from 'react' import PropTypes from 'prop-types' import classNames from 'classnames' export interface CTabContentProps extends HTMLAttributes { /** * A string of all className you want applied to the base component. */ className?: string } export const CTabContent = forwardRef( ({ children, className, ...rest }, ref) => { return (
{children}
) } ) CTabContent.propTypes = { children: PropTypes.node, className: PropTypes.string, } CTabContent.displayName = 'CTabContent'