inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

38
node_modules/reactstrap/src/CardBody.js generated vendored Normal file
View File

@@ -0,0 +1,38 @@
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { mapToCssModules, tagPropType } from './utils';
const propTypes = {
/** Add custom class */
className: PropTypes.string,
/** Change underlying component's CSS base class name */
cssModule: PropTypes.object,
innerRef: PropTypes.oneOfType([
PropTypes.object,
PropTypes.string,
PropTypes.func,
]),
/** Set a custom element for this component */
tag: tagPropType,
};
function CardBody(props) {
const {
className,
cssModule,
innerRef,
tag: Tag = 'div',
...attributes
} = props;
const classes = mapToCssModules(
classNames(className, 'card-body'),
cssModule,
);
return <Tag {...attributes} className={classes} ref={innerRef} />;
}
CardBody.propTypes = propTypes;
export default CardBody;