import type { FC, HTMLAttributes } from 'react';
import styles from './card.module.scss';
export type CardBodyProps = HTMLAttributes;
export const CardBody: FC = ({
  children,
  className = '',
  ...props
}) => {
  const bodyClass = `${styles.body} ${className}`;
  return (
    
      {children}
    
  );
};