@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 824 B
JavaScript
import * as React from "react";
function BackwardIcon({
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: "M3.406 14.556c-1.875-1.136-1.875-3.976 0-5.112L6.781 7.4C8.656 6.264 11 7.684 11 9.955v4.09c0 2.271-2.344 3.691-4.219 2.555zM14.406 14.556c-1.875-1.136-1.875-3.976 0-5.112L17.781 7.4C19.656 6.264 22 7.684 22 9.955v4.09c0 2.271-2.344 3.691-4.219 2.555z"
}));
}
const ForwardRef = React.forwardRef(BackwardIcon);
export default ForwardRef;