UNPKG

@astraicons/react

Version:

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

21 lines 725 B
import * as React from "react"; function ChevronLeftIcon({ 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: "M15.477 17.42a.75.75 0 1 1-.953 1.16L9.43 14.388a3.213 3.213 0 0 1 0-4.978l4.85-3.99a.75.75 0 0 1 .952 1.158l-4.85 3.99a1.713 1.713 0 0 0 0 2.661z" })); } const ForwardRef = React.forwardRef(ChevronLeftIcon); export default ForwardRef;