@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.32 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 StyledArrowDownRightRegular = ({
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.26548V22.2655C24 23.2592 23.1938 24.0655 22.2 24.0655H4.20002C3.20627 24.0655 2.40002 23.263 2.40002 22.2655C2.40002 21.268 3.20627 20.4655 4.20002 20.4655H17.8575L0.527344 3.07298C-0.175781 2.36986 -0.175781 1.23098 0.527344 0.527484C1.23047 -0.176016 2.36934 -0.17564 3.07284 0.527484L20.4 17.923V4.26548C20.4 3.27548 21.21 2.46548 22.2 2.46548C23.19 2.46548 24 3.27548 24 4.26548Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowDownRightRegular);
const ArrowDownRightRegular = /*#__PURE__*/memo(ForwardRef);
export default ArrowDownRightRegular;