@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
28 lines (25 loc) • 728 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _react = require("@emotion/react");
/**
* @jsxRuntime classic
* @jsx jsx
*/
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
var separator = (0, _react.css)({
background: "var(--ds-border, #091E4224)",
width: '1px',
height: '20px',
margin: "0 ".concat("var(--ds-space-050, 4px)"),
alignSelf: 'center'
});
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
var _default = exports.default = function _default() {
return (0, _react.jsx)("div", {
css: separator,
className: "separator"
});
};