semantic-ui-react
Version:
The official Semantic-UI-React integration.
49 lines (38 loc) • 1.34 kB
JavaScript
import _extends from 'babel-runtime/helpers/extends';
import _isNil from 'lodash/isNil';
import cx from 'classnames';
import React, { PropTypes } from 'react';
import { customPropTypes, getElementType, getUnhandledProps, META } from '../../lib';
/**
* A card can contain a description with one or more paragraphs.
*/
function CardDescription(props) {
var children = props.children,
className = props.className,
content = props.content;
var classes = cx(className, 'description');
var rest = getUnhandledProps(CardDescription, props);
var ElementType = getElementType(CardDescription, props);
return React.createElement(
ElementType,
_extends({}, rest, { className: classes }),
_isNil(children) ? content : children
);
}
CardDescription.handledProps = ['as', 'children', 'className', 'content'];
CardDescription._meta = {
name: 'CardDescription',
parent: 'Card',
type: META.TYPES.VIEW
};
process.env.NODE_ENV !== "production" ? CardDescription.propTypes = {
/** An element type to render as (string or function). */
as: customPropTypes.as,
/** Primary content. */
children: PropTypes.node,
/** Additional classes. */
className: PropTypes.string,
/** Shorthand for primary content. */
content: customPropTypes.contentShorthand
} : void 0;
export default CardDescription;