chatui2
Version:
The React library for Chatbot UI
16 lines • 693 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
var _excluded = ["children", "className", "direction"];
import React from 'react';
import clsx from 'clsx';
export var CardActions = /*#__PURE__*/React.forwardRef(function (props, ref) {
var children = props.children,
className = props.className,
direction = props.direction,
other = _objectWithoutProperties(props, _excluded);
return /*#__PURE__*/React.createElement("div", _extends({
className: clsx('CardActions', className, direction && "CardActions--".concat(direction))
}, other, {
ref: ref
}), children);
});