UNPKG

@astraicons/react

Version:

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

23 lines 1.13 kB
import * as React from "react"; function StatusUpIcon({ 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", { fillRule: "evenodd", d: "M7.5 3A5.5 5.5 0 0 0 2 8.5v7A5.5 5.5 0 0 0 7.5 21h9a5.5 5.5 0 0 0 5.5-5.5v-7A5.5 5.5 0 0 0 16.5 3zm9.058 4.502a.75.75 0 1 0-1.115-1.004l-3.381 3.756-1.692-1.88a.75.75 0 0 0-1.115 0l-2.812 3.124a.75.75 0 1 0 1.114 1.004l2.255-2.505 1.693 1.88a.75.75 0 0 0 1.114 0zM10 14.25a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75M6.75 16a.75.75 0 0 0-1.5 0v1a.75.75 0 0 0 1.5 0zM14 13.25a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75M18.75 12a.75.75 0 0 0-1.5 0v5a.75.75 0 0 0 1.5 0z", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(StatusUpIcon); export default ForwardRef;