@1771technologies/lytenyte-pro
Version:
35 lines (34 loc) • 1 kB
JavaScript
import { jsx } from "react/jsx-runtime";
const SortAscending = (p) => {
return /* @__PURE__ */ jsx(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "20",
height: "20",
fill: "currentcolor",
stroke: "2",
viewBox: "0 0 256 256",
...p,
children: /* @__PURE__ */ jsx("path", { d: "M202.83,146.83l-72,72a4,4,0,0,1-5.66,0l-72-72a4,4,0,0,1,5.66-5.66L124,206.34V40a4,4,0,0,1,8,0V206.34l65.17-65.17a4,4,0,0,1,5.66,5.66Z" })
}
);
};
const SortDescending = (p) => {
return /* @__PURE__ */ jsx(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "20",
height: "20",
fill: "currentcolor",
viewBox: "0 0 256 256",
...p,
children: /* @__PURE__ */ jsx("path", { d: "M202.83,114.83a4,4,0,0,1-5.66,0L132,49.66V216a4,4,0,0,1-8,0V49.66L58.83,114.83a4,4,0,0,1-5.66-5.66l72-72a4,4,0,0,1,5.66,0l72,72A4,4,0,0,1,202.83,114.83Z" })
}
);
};
export {
SortAscending as S,
SortDescending as a
};