/* 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'; // component - CoreUI / CWidgetSimple const CWidgetSimple = (props: any) => { const { children, className, // header, text, ...attributes } = props; const classes = classNames('card', className); return ( <>
{header && (
{header}
)} {text &&
{text}
} {children}
); }; CWidgetSimple.propTypes = { children: PropTypes.node, className: PropTypes.oneOfType([ PropTypes.string, PropTypes.array, PropTypes.object, ]), // innerRef: PropTypes.oneOfType([PropTypes.object, PropTypes.func]), header: PropTypes.string, text: PropTypes.string, }; export default CWidgetSimple;