UNPKG

@astraicons/react

Version:

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

21 lines 733 B
import * as React from "react"; function CheckIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M18.826 8.089a.635.635 0 0 0-.05-.921.696.696 0 0 0-.957.048L10.164 15.4l-4.007-3.86a.696.696 0 0 0-.958-.001.635.635 0 0 0 0 .922l4.511 4.348a.69.69 0 0 0 .983-.025z" })); } const ForwardRef = React.forwardRef(CheckIcon); export default ForwardRef;