megadraft
Version:
Rich Text editor built on top of draft.js
27 lines (23 loc) • 684 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = Blockquote;
var _react = _interopRequireDefault(require("react"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
/*
* Copyright (c) 2016, Globo.com (https://github.com/globocom)
*
* License: MIT
*/
function Blockquote() {
return /*#__PURE__*/_react["default"].createElement("svg", {
width: "24",
height: "24",
viewBox: "0 0 24 24"
}, /*#__PURE__*/_react["default"].createElement("path", {
d: "M6 17h3l2-4V7H5v6h3l-2 4zm8 0h3l2-4V7h-6v6h3l-2 4z",
fill: "currentColor",
fillRule: "evenodd"
}));
}