@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 739 B
JavaScript
import * as React from "react";
function PreviousIcon({
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: "M13.436 15.067c2.33-1.363 2.33-4.77 0-6.134L9.242 6.48C6.912 5.117 4 6.82 4 9.547v4.906c0 2.727 2.912 4.43 5.242 3.067zM18.5 9A.75.75 0 0 1 20 9v6a.75.75 0 0 1-1.5 0z"
}));
}
const ForwardRef = React.forwardRef(PreviousIcon);
export default ForwardRef;