@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.4 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 StyledArrowTurnDownRegular = ({
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: "M19.7547 17.6297L13.7547 23.6297C13.5766 23.8922 13.2906 24 12.9578 24C12.625 24 12.3822 23.8901 12.1623 23.6704L6.16234 17.6704C5.72289 17.231 5.72289 16.5192 6.16234 16.0795C6.6018 15.6398 7.31359 15.64 7.75328 16.0795L11.875 20.1609V2.25H5.125C4.50391 2.25 4 1.74609 4 1.125C4 0.503906 4.50391 0 5.125 0H13C13.6211 0 14.125 0.503906 14.125 1.125V20.1609L18.2045 16.0814C18.644 15.642 19.3558 15.642 19.7955 16.0814C20.2352 16.5209 20.2328 17.2313 19.7547 17.6297Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledArrowTurnDownRegular);
const ArrowTurnDownRegular = /*#__PURE__*/memo(ForwardRef);
export default ArrowTurnDownRegular;