@mysten/dapp-kit
Version:
A collection of React hooks and components for interacting with the Sui blockchain and wallets.
19 lines (18 loc) • 498 B
JavaScript
// src/components/icons/ChevronIcon.tsx
import { jsx } from "react/jsx-runtime";
function ChevronIcon(props) {
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, fill: "none", ...props, children: /* @__PURE__ */ jsx(
"path",
{
stroke: "#A0B6C3",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.5,
d: "m4 6 4 4 4-4"
}
) });
}
export {
ChevronIcon
};
//# sourceMappingURL=ChevronIcon.js.map