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, }; const defaultProps = { tag: 'a' }; const CardLink = (props) => { const { className, cssModule, tag: Tag, innerRef, ...attributes } = props; const classes = mapToCssModules(classNames( className, 'card-link' ), cssModule); return ( ); }; CardLink.propTypes = propTypes; CardLink.defaultProps = defaultProps; export default CardLink;