@spark-ui/icons
Version:
spark-ui icons
29 lines (28 loc) • 907 B
JavaScript
// src/icons/Check.tsx
import React from "react";
var Check = ({
title,
fill = "currentColor",
stroke = "none",
ref,
...props
}) => /* @__PURE__ */ React.createElement(
"svg",
{
ref,
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
"data-title": "Check",
...{ ...title && { "data-title": title }, fill, stroke, ...props },
dangerouslySetInnerHTML: {
__html: (title === void 0 ? "" : `<title>${title}</title>`) + '<path d="m8.92,19.08c-.18,0-.36-.03-.53-.1s-.33-.17-.47-.31l-5.49-5.34c-.28-.28-.42-.61-.42-1s.14-.73.42-1c.28-.28.62-.41,1.02-.41s.74.14,1.05.41l4.43,4.3,10.62-10.29c.28-.28.62-.42,1.02-.43.39,0,.73.13,1.02.43.28.28.42.61.42,1s-.14.73-.42,1l-11.65,11.32c-.14.14-.3.24-.47.31-.17.07-.35.1-.53.1Z"/>'
}
}
);
Check.displayName = "Check";
var tags = ["Check", ""];
export {
Check,
tags
};
//# sourceMappingURL=chunk-524QW3UO.mjs.map