import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { mapToCssModules, tagPropType } from './utils'; var propTypes = { children: PropTypes.node, inline: PropTypes.bool, tag: tagPropType, color: PropTypes.string, className: PropTypes.string, cssModule: PropTypes.object }; var defaultProps = { tag: 'small', color: 'muted' }; var FormText = function FormText(props) { var className = props.className, cssModule = props.cssModule, inline = props.inline, color = props.color, Tag = props.tag, attributes = _objectWithoutPropertiesLoose(props, ["className", "cssModule", "inline", "color", "tag"]); var classes = mapToCssModules(classNames(className, !inline ? 'form-text' : false, color ? "text-" + color : false), cssModule); return /*#__PURE__*/React.createElement(Tag, _extends({}, attributes, { className: classes })); }; FormText.propTypes = propTypes; FormText.defaultProps = defaultProps; export default FormText;