@chatui/core
Version:
The React library for Chatbot UI
12 lines • 509 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
var _excluded = ["children"];
/* eslint-disable jsx-a11y/label-has-associated-control */
import React from 'react';
export var Label = function Label(props) {
var children = props.children,
other = _objectWithoutProperties(props, _excluded);
return /*#__PURE__*/React.createElement("label", _extends({
className: "Label"
}, other), children);
};