UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

17 lines 511 B
import _extends from "@babel/runtime/helpers/esm/extends"; /* eslint-disable jsx-a11y/heading-has-content */ import classNames from 'classnames'; import * as React from 'react'; var Title = function Title(_ref) { var prefixCls = _ref.prefixCls, className = _ref.className, width = _ref.width, style = _ref.style; return /*#__PURE__*/React.createElement("h3", { className: classNames(prefixCls, className), style: _extends({ width: width }, style) }); }; export default Title;