flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
29 lines (26 loc) • 756 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import { forwardRef } from 'react';
const CheckIcon = forwardRef((props, ref) => /* @__PURE__ */ jsx(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
fill: "currentColor",
stroke: "currentColor",
strokeWidth: 0,
viewBox: "0 0 448 512",
ref,
...props,
children: /* @__PURE__ */ jsx(
"path",
{
stroke: "none",
d: "M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7l233.4-233.3c12.5-12.5 32.8-12.5 45.3 0z"
}
)
}
));
CheckIcon.displayName = "CheckIcon";
export { CheckIcon };
//# sourceMappingURL=check-icon.js.map