Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / atoms / Text / Paragraph / Paragraph.js
Size: Mime:
"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});

const tslib_1 = require("tslib");

const react_1 = tslib_1.__importDefault(require("react"));

const styled_1 = require("./styled");

class Paragraph extends react_1.default.PureComponent {
  render() {
    const {
      content
    } = this.props;
    return react_1.default.createElement(styled_1.ParagraphElement, Object.assign({}, this.props), content);
  }

}

Paragraph.defaultProps = {
  content: 'Hey, I am a paragraph! and I am self-contained unit of a discourse in writing dealing with a particular point or idea.'
};
exports.Paragraph = Paragraph;
exports.default = Paragraph; //# sourceMappingURL=Paragraph.js.map