@atlaskit/editor-plugin-table
Version:
Table plugin for the @atlaskit/editor
41 lines (40 loc) • 1.29 kB
JavaScript
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.SplitCellIcon = void 0;
var _react = _interopRequireDefault(require("react"));
var SplitCellIcon = exports.SplitCellIcon = function SplitCellIcon() {
return /*#__PURE__*/_react.default.createElement("svg", {
width: "24",
height: "24",
viewBox: "0 0 24 24",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, /*#__PURE__*/_react.default.createElement("path", {
d: "M19 18L14 18L14 6L19 6",
stroke: "currentColor",
strokeWidth: "2",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/_react.default.createElement("path", {
d: "M5 6L10 6L9.99999 18L5 18",
stroke: "currentColor",
strokeWidth: "2",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/_react.default.createElement("path", {
d: "M7 10L5 12L7 14",
stroke: "currentColor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/_react.default.createElement("path", {
d: "M17 14L19 12L17 10",
stroke: "currentColor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}));
};