grommet
Version:
focus on the essential experience
24 lines (17 loc) • 1.18 kB
JavaScript
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
import React from 'react';
import { StyledParagraph } from './StyledParagraph';
var Paragraph = function Paragraph(_ref) {
var color = _ref.color,
rest = _objectWithoutPropertiesLoose(_ref, ["color"]);
return React.createElement(StyledParagraph, _extends({
colorProp: color
}, rest));
};
var ParagraphDoc;
if (process.env.NODE_ENV !== 'production') {
ParagraphDoc = require('./doc').doc(Paragraph); // eslint-disable-line global-require
}
var ParagraphWrapper = ParagraphDoc || Paragraph;
export { ParagraphWrapper as Paragraph };