@vela-ui/react
Version:
Vela UI React components
25 lines (23 loc) • 526 B
JavaScript
// src/icons/chevron-down.tsx
import { jsx } from "react/jsx-runtime";
var ChevronDownIcon = (props) => {
return /* @__PURE__ */ jsx(
"svg",
{
fill: "none",
stroke: "currentColor",
strokeWidth: 2,
strokeLinecap: "round",
strokeLinejoin: "round",
width: "1em",
height: "1em",
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", { d: "m6 9 6 6 6-6" })
}
);
};
export {
ChevronDownIcon
};