/* eslint-disable @typescript-eslint/no-explicit-any */ /* eslint-disable react/require-default-props */ import classNames from 'classnames'; import PropTypes from 'prop-types'; import React from 'react'; import { tagPropType } from '../utils/helper'; // component - CoreUI / CListGroup const CListGroup = (props: any) => { const { tag: Tag, className, // innerRef, horizontal, flush, accent, ...attributes } = props; // render const classes = classNames(className, 'list-group', { [`list-group-horizontal-${horizontal}`]: horizontal, 'list-group-flush': flush, 'list-group-accent': accent, }); return ( <> ); }; CListGroup.propTypes = { tag: tagPropType, className: PropTypes.oneOfType([ PropTypes.string, PropTypes.array, PropTypes.object, ]), // innerRef: PropTypes.oneOfType([PropTypes.object, PropTypes.func]), flush: PropTypes.bool, horizontal: PropTypes.string, accent: PropTypes.bool, children: PropTypes.node, id: PropTypes.string, role: PropTypes.string, }; CListGroup.defaultProps = { tag: 'ul', }; export default CListGroup;