UNPKG

@heroicons/react

Version:
18 lines (16 loc) 586 B
const React = require("react"); function CheckIcon(props, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 20 20", fill: "currentColor", "aria-hidden": "true", ref: svgRef }, props), /*#__PURE__*/React.createElement("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" })); } const ForwardRef = React.forwardRef(CheckIcon); module.exports = ForwardRef;