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

35
node_modules/reactstrap/src/CardLink.js generated vendored Normal file
View File

@@ -0,0 +1,35 @@
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { mapToCssModules, tagPropType } from './utils';
const propTypes = {
tag: tagPropType,
innerRef: PropTypes.oneOfType([
PropTypes.object,
PropTypes.func,
PropTypes.string,
]),
className: PropTypes.string,
cssModule: PropTypes.object,
};
function CardLink(props) {
const {
className,
cssModule,
tag: Tag = 'a',
innerRef,
...attributes
} = props;
const classes = mapToCssModules(
classNames(className, 'card-link'),
cssModule,
);
return <Tag {...attributes} ref={innerRef} className={classes} />;
}
CardLink.propTypes = propTypes;
export default CardLink;