@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.3 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledArrowDownRightSolid = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M24 4.80187V21.6019C24 22.9286 22.9253 24.0019 21.6 24.0019H4.8C3.47475 24.0019 2.4 22.9286 2.4 21.6019C2.4 20.2751 3.47475 19.2019 4.8 19.2019H15.81L0.703125 4.09687C-0.234375 3.15937 -0.234375 1.64062 0.703125 0.703125C1.64063 -0.234375 3.15938 -0.234375 4.09688 0.703125L19.2 15.8119V4.80187C19.2 3.47512 20.2748 2.40187 21.6 2.40187C22.9253 2.40187 24 3.47437 24 4.80187Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowDownRightSolid);
const ArrowDownRightSolid = /*#__PURE__*/memo(ForwardRef);
export default ArrowDownRightSolid;