@1771technologies/lytenyte-pro
Version:
28 lines (27 loc) • 567 B
JavaScript
import { jsx } from "react/jsx-runtime";
const ArrowDownIcon = (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: "M5 7.5L10 12.5L15 7.5",
stroke: "currentcolor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}
)
}
);
};
export {
ArrowDownIcon as A
};