@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 727 B
JavaScript
const React = require("react");
function ArrowDownIcon({
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: "M12.75 5a.75.75 0 0 0-1.5 0v12.19l-4.72-4.72a.75.75 0 0 0-1.06 1.06l5.293 5.293a1.75 1.75 0 0 0 2.474 0l5.293-5.293a.75.75 0 1 0-1.06-1.06l-4.72 4.72z"
}));
}
const ForwardRef = React.forwardRef(ArrowDownIcon);
module.exports = ForwardRef;