@1771technologies/lytenyte-pro
Version:
147 lines (146 loc) • 3.71 kB
JavaScript
import { jsxs, jsx } from "react/jsx-runtime";
const ExpandIcon = (props) => {
return /* @__PURE__ */ jsxs(
"svg",
{
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [
/* @__PURE__ */ jsx(
"path",
{
d: "M6.84325 17.0415L2.9488 17.038L2.94531 13.1436",
stroke: "currentcolor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M8.02295 11.9639L2.94875 17.0381",
stroke: "currentcolor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M13.1572 2.93409L17.0517 2.93758L17.0552 6.83203",
stroke: "currentcolor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M17.0518 2.93555L11.9776 8.00974",
stroke: "currentcolor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}
)
]
}
);
};
const CollapseIcon = (props) => {
return /* @__PURE__ */ jsxs(
"svg",
{
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [
/* @__PURE__ */ jsx(
"path",
{
d: "M15.8203 8.07763L11.9258 8.07414L11.9224 4.17969",
stroke: "currentcolor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M17 3L11.9258 8.0742",
stroke: "currentcolor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M4.51173 11.5786L8.40618 11.5821L8.40967 15.4766",
stroke: "currentcolor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M8.40625 11.5801L3.33205 16.6543",
stroke: "currentcolor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}
)
]
}
);
};
function ManageColumnsIcon(props) {
return /* @__PURE__ */ jsxs(
"svg",
{
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [
/* @__PURE__ */ jsx(
"rect",
{
x: "2.5",
y: "2.5",
width: "15",
height: "15",
rx: "3",
stroke: "currentcolor",
strokeWidth: "1.5",
strokeLinecap: "round"
}
),
/* @__PURE__ */ jsx("path", { d: "M7 2.5V17.5", stroke: "currentcolor", strokeWidth: "1.5", strokeLinecap: "round" }),
/* @__PURE__ */ jsx("path", { d: "M2.5 7L17.5 7", stroke: "currentcolor", strokeWidth: "1.5", strokeLinecap: "round" })
]
}
);
}
export {
CollapseIcon as C,
ExpandIcon as E,
ManageColumnsIcon as M
};