UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

22 lines 754 B
import * as React from "react"; import { forwardRef } from "react"; const CheckIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M19.502 6.443a.75.75 0 0 1 .055 1.06l-9.004 10a.75.75 0 0 1-1.088.027l-4.996-5a.75.75 0 1 1 1.062-1.06l4.436 4.44 8.476-9.412a.75.75 0 0 1 1.059-.055", clipRule: "evenodd" })); const ForwardRef = forwardRef(CheckIcon); export default ForwardRef;