|
123456789101112131415161718192021222324252627282930313233343536 |
- 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 React.createElement(Tag, _extends({}, attributes, {
- className: classes
- }));
- };
-
- FormText.propTypes = propTypes;
- FormText.defaultProps = defaultProps;
- export default FormText;
|