@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 708 B
JavaScript
import * as React from "react";
function ArrowDownFillIcon({
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: "M14.506 7c3.112 0 4.386 1.955 2.83 4.347l-2.506 3.86c-1.556 2.391-4.104 2.391-5.66 0l-2.506-3.86C5.108 8.955 6.382 7 9.494 7z"
}));
}
const ForwardRef = React.forwardRef(ArrowDownFillIcon);
export default ForwardRef;