@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
30 lines • 1.03 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",
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("circle", {
cx: 12,
cy: 14,
r: 2,
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M20.104 9.07a8.92 8.92 0 0 1-2.217 10.758M15.472 4.706a8.9 8.9 0 0 0-3.71-.702A8.997 8.997 0 0 0 6.59 20.165M11.95 11.925l4.886-5.491c.467-.429 1.03-.476 1.409-.182.378.294.47.852.17 1.41l-2.253 3.153-1.127 1.576-.563.788-.282.394"
}));
const ForwardRef = forwardRef(AccelerationIcon);
module.exports = ForwardRef;