polaris-glints
Version:
Glints forked polaris react
28 lines (21 loc) • 759 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var React = require('react');
var Caption$1 = require('./Caption.scss.js');
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
/**
* @deprecated The Caption component will be removed in the next
* major version. Use the Text component instead. See the
* Polaris component guide on how to use Text.
*
* https://polaris.shopify.com/components/text
*/
function Caption({
children
}) {
return /*#__PURE__*/React__default["default"].createElement("p", {
className: Caption$1["default"].Caption
}, children);
}
exports.Caption = Caption;