@crossed/unicons
Version:
unicons
33 lines (32 loc) • 723 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
import { useTheme } from "@crossed/styled";
const CheckCircle = ({
Svg,
Path,
color,
size = 24
}) => {
const theme = useTheme();
const stroke = color ?? theme.font.color;
return /* @__PURE__ */ jsxs(
Svg,
{
width: size,
height: size,
viewBox: "0 0 24 24",
fill: "none",
strokeWidth: "2",
strokeLinecap: "round",
strokeLinejoin: "round",
stroke,
children: [
/* @__PURE__ */ jsx(Path, { d: "M22 11.08V12a10 10 0 1 1-5.93-9.14", stroke }),
/* @__PURE__ */ jsx(Path, { d: "m9 11 3 3L22 4", stroke })
]
}
);
};
export {
CheckCircle
};
//# sourceMappingURL=CheckCircle.js.map