芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/reactstrap/src/ListGroupItemHeading.js
import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { mapToCssModules, tagPropType } from './utils'; const propTypes = { tag: tagPropType, className: PropTypes.any, cssModule: PropTypes.object, }; const defaultProps = { tag: 'h5' }; const ListGroupItemHeading = (props) => { const { className, cssModule, tag: Tag, ...attributes } = props; const classes = mapToCssModules(classNames( className, 'list-group-item-heading' ), cssModule); return (
); }; ListGroupItemHeading.propTypes = propTypes; ListGroupItemHeading.defaultProps = defaultProps; export default ListGroupItemHeading;