@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
52 lines (51 loc) • 1.81 kB
JavaScript
"use client";
import "react";
import { jsx, jsxs } from "react/jsx-runtime";
//#region packages/@mantine/core/src/components/Splitter/GripIcon.tsx
function GripVerticalIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
fill: "none",
stroke: "currentColor",
strokeWidth: "2",
strokeLinecap: "round",
strokeLinejoin: "round",
...props,
children: [
/* @__PURE__ */ jsx("path", { d: "M8 5a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
/* @__PURE__ */ jsx("path", { d: "M8 12a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
/* @__PURE__ */ jsx("path", { d: "M8 19a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
/* @__PURE__ */ jsx("path", { d: "M14 5a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
/* @__PURE__ */ jsx("path", { d: "M14 12a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
/* @__PURE__ */ jsx("path", { d: "M14 19a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" })
]
});
}
function GripHorizontalIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: "24",
height: "24",
viewBox: "0 0 24 24",
fill: "none",
stroke: "currentColor",
strokeWidth: "2",
strokeLinecap: "round",
strokeLinejoin: "round",
...props,
children: [
/* @__PURE__ */ jsx("path", { d: "M4 9a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
/* @__PURE__ */ jsx("path", { d: "M4 15a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
/* @__PURE__ */ jsx("path", { d: "M11 9a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
/* @__PURE__ */ jsx("path", { d: "M11 15a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
/* @__PURE__ */ jsx("path", { d: "M18 9a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" }),
/* @__PURE__ */ jsx("path", { d: "M18 15a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" })
]
});
}
//#endregion
export { GripHorizontalIcon, GripVerticalIcon };
//# sourceMappingURL=GripIcon.mjs.map