@atlaskit/editor-plugin-table
Version:
Table plugin for the @atlaskit/editor
23 lines (22 loc) • 961 B
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.DragHandleIcon = void 0;
var _react = _interopRequireDefault(require("react"));
var DragHandleIcon = exports.DragHandleIcon = function DragHandleIcon() {
return /*#__PURE__*/_react.default.createElement("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "16",
fill: "none",
"data-testid": "drag-icon-enabled"
}, /*#__PURE__*/_react.default.createElement("rect", {
width: "24",
height: "16",
rx: "4"
}), /*#__PURE__*/_react.default.createElement("g", null, /*#__PURE__*/_react.default.createElement("path", {
d: "M9 10a1 1 0 1 0-2 0 1 1 0 0 0 2 0ZM9 6a1 1 0 1 0-2 0 1 1 0 0 0 2 0ZM17 10a1 1 0 1 0-2 0 1 1 0 0 0 2 0ZM17 6a1 1 0 1 0-2 0 1 1 0 0 0 2 0ZM13 10a1 1 0 1 0-2 0 1 1 0 0 0 2 0ZM13 6a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z"
})));
};