/* eslint-disable react/forbid-prop-types */ /* eslint-disable react/require-default-props */ /* eslint-disable @typescript-eslint/no-explicit-any */ import classNames from 'classnames'; import PropTypes from 'prop-types'; import React from 'react'; import { tagPropType } from '../utils/helper'; // component - CoreUI / CCard const CCard = (props: any) => { const { tag: Tag, className, // innerRef, color, textColor, borderColor, align, accentColor, ...attributes } = props; // render const classes = classNames( className, 'card', align ? `text-${align}` : false, textColor ? `text-${textColor}` : false, color ? `bg-${color}` : false, borderColor ? `border-${borderColor}` : false, accentColor ? `card-accent-${accentColor}` : false ); return ( <> ); }; export const sharedPropTypes = { align: PropTypes.oneOf(['', 'left', 'center', 'right']), color: PropTypes.string, borderColor: PropTypes.string, textColor: PropTypes.string, }; CCard.propTypes = { tag: tagPropType, className: PropTypes.oneOfType([ PropTypes.string, PropTypes.array, PropTypes.object, ]), // innerRef: PropTypes.oneOfType([PropTypes.object, PropTypes.func]), accentColor: PropTypes.string, children: PropTypes.node, style: PropTypes.object, ...sharedPropTypes, }; CCard.defaultProps = { tag: 'div', }; export default CCard;