@1771technologies/lytenyte-pro
Version:
52 lines (51 loc) • 1.09 kB
JavaScript
import { jsx } from "react/jsx-runtime";
const ArrowRightIcon = (props) => {
return /* @__PURE__ */ jsx(
"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: "M7.5 5L12.5 10L7.5 15",
stroke: "currentcolor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}
)
}
);
};
const TickmarkIcon = (props) => {
return /* @__PURE__ */ jsx(
"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: "M3 10.5588L7.64 15.5L17.5 5",
stroke: "currentcolor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}
)
}
);
};
export {
ArrowRightIcon as A,
TickmarkIcon as T
};