'use client'; 'use strict'; var jsxRuntime = require('react/jsx-runtime'); function CheckIcon(props) { return /* @__PURE__ */ jsxRuntime.jsx( "svg", { stroke: "currentColor", fill: "currentColor", strokeWidth: "0", viewBox: "0 0 20 20", "aria-hidden": "true", height: "1em", width: "1em", ...props, children: /* @__PURE__ */ jsxRuntime.jsx( "path", { fillRule: "evenodd", d: "M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z", clipRule: "evenodd" } ) } ); } exports.CheckIcon = CheckIcon;