UNPKG

chatui2

Version:

The React library for Chatbot UI

15 lines 599 B
import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties"; var _excluded = ["className", "children"]; import React from 'react'; import clsx from 'clsx'; export var CardContent = /*#__PURE__*/React.forwardRef(function (props, ref) { var className = props.className, children = props.children, other = _objectWithoutProperties(props, _excluded); return /*#__PURE__*/React.createElement("div", _extends({ className: clsx('CardContent', className) }, other, { ref: ref }), children); });