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