@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.25 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const AccelerationIcon = ({
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", {
d: "M12.257 3.254a9.7 9.7 0 0 1 3.506.76.751.751 0 0 1-.584 1.382 8.2 8.2 0 0 0-3.396-.643 8.247 8.247 0 0 0-4.74 14.814.75.75 0 0 1-.906 1.196 9.747 9.747 0 0 1 5.217-17.49l.385-.02zM19.77 8.397a.75.75 0 0 1 1.006.34 9.674 9.674 0 0 1-2.404 11.662.75.75 0 0 1-.971-1.143 8.17 8.17 0 0 0 2.031-9.854.75.75 0 0 1 .338-1.005"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M16.328 5.882c.66-.608 1.636-.798 2.377-.222.695.54.786 1.446.444 2.208l-.074.15-.05.08-3.944 5.517-.28.395a1 1 0 0 1-.056.067A2.748 2.748 0 0 1 9.25 14a2.75 2.75 0 0 1 2.256-2.704l4.77-5.361zm-4.329 6.868a1.25 1.25 0 1 0 .001 2.5 1.25 1.25 0 0 0 0-2.5",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(AccelerationIcon);
module.exports = ForwardRef;