UNPKG

@astraicons/react

Version:

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

21 lines 734 B
import * as React from "react"; function NextIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M10.564 15.067c-2.33-1.363-2.33-4.77 0-6.134l4.194-2.453C17.088 5.117 20 6.82 20 9.547v4.906c0 2.727-2.912 4.43-5.242 3.067zM5.5 9A.75.75 0 0 0 4 9v7a.75.75 0 0 0 1.5 0z" })); } const ForwardRef = React.forwardRef(NextIcon); export default ForwardRef;