UNPKG

@vela-ui/react

Version:

Vela UI React components

25 lines (23 loc) 510 B
// src/icons/check.tsx import { jsx } from "react/jsx-runtime"; var CheckIcon = (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: "M20 6 9 17l-5-5" }) } ); }; export { CheckIcon };