UNPKG

@astraicons/react

Version:

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

29 lines 1.01 kB
import * as React from "react"; import { forwardRef } from "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("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.165" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m11.951 11.925 4.886-5.49c.466-.43 1.03-.477 1.408-.183s.471.852.17 1.41l-4.224 5.911M14 14a2 2 0 1 1-4 0 2 2 0 0 1 4 0", opacity: 0.4 })); const ForwardRef = forwardRef(AccelerationIcon); export default ForwardRef;