@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 720 B
JavaScript
import * as React from "react";
function ChevronUpIcon({
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: "M11.116 10.945a1.25 1.25 0 0 1 1.768 0l4.586 4.585a.75.75 0 1 0 1.06-1.06l-4.586-4.586a2.75 2.75 0 0 0-3.889 0L5.47 14.47a.75.75 0 0 0 1.06 1.06z"
}));
}
const ForwardRef = React.forwardRef(ChevronUpIcon);
export default ForwardRef;