@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
35 lines • 955 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const StatusUpIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("rect", {
width: 18,
height: 18,
x: 3,
y: 3,
strokeLinecap: "round",
rx: 4.5
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "m16 7-3.938 4.376-2.25-2.5L7 12"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M8 17.417v-2M12 17.417v-3M16 17.417v-5",
opacity: 0.4
}));
const ForwardRef = forwardRef(StatusUpIcon);
module.exports = ForwardRef;