e2ed
Version:
E2E testing framework over Playwright
10 lines (9 loc) • 463 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DragContainer = void 0;
/**
* Renders drag container to change columns widths.
* @internal
*/
const DragContainer = () => (jsx.createElement("div", { class: "drag-container", role: "separator", tabIndex: 0, "aria-label": "separator", "aria-orientation": "vertical", "aria-valuemax": "", "aria-valuemin": "180", "aria-valuenow": "" }));
exports.DragContainer = DragContainer;