UNPKG

semantic-ui-react

Version:
42 lines (33 loc) 877 B
import cx from 'classnames' import PropTypes from 'prop-types' import React from 'react' import { customPropTypes, getElementType, getUnhandledProps, META, } from '../../lib' /** * A comment can contain text. */ function CommentText(props) { const { className, children } = props const classes = cx(className, 'text') const rest = getUnhandledProps(CommentText, props) const ElementType = getElementType(CommentText, props) return <ElementType {...rest} className={classes}>{children}</ElementType> } CommentText._meta = { name: 'CommentText', parent: 'Comment', type: META.TYPES.VIEW, } CommentText.propTypes = { /** An element type to render as (string or function). */ as: customPropTypes.as, /** Primary content. */ children: PropTypes.node, /** Additional classes. */ className: PropTypes.string, } export default CommentText