@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.41 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const ForgeIcon = ({
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("path", {
strokeLinecap: "round",
d: "m14.837 10.51-.667.474M5.83 9.562l.666.454M19.953 10.492l-6.14-3.544m.788-2.755-2.42 4.127a.95.95 0 0 1-1.29.343l-.438-.252a.95.95 0 0 1-.346-1.301l2.202-3.754a.95.95 0 0 1 .617-.447l1.766-.381a.474.474 0 0 1 .502.714z"
}), /*#__PURE__*/React.createElement("path", {
d: "M15.31 13.829h4.74c.403 0 .614.43.329.714-.847.843-2.552 2.13-5.069 2.13"
}), /*#__PURE__*/React.createElement("path", {
d: "M9.608 21.414h-3.94a.313.313 0 0 1-.312-.313c0-.101.05-.197.131-.258 3.168-2.38 2.403-6.4-2.032-6.97A.514.514 0 0 1 3 13.372c0-.27.22-.49.491-.49h11.36c.262 0 .474.212.474.473v3.394c-2.824.394-4.232 1.324-.608 4.09a.319.319 0 0 1-.189.576h-4.92Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M12.468 13.355v-.764a.833.833 0 0 0-.834-.833H8.56a.833.833 0 0 0-.833.833v.764"
}));
const ForwardRef = forwardRef(ForgeIcon);
module.exports = ForwardRef;