@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 StyledSortRegular = ({
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: "M17.3895 13.6599H6.37489C4.26928 13.6599 3.20117 16.2319 4.70157 17.7295L10.2299 23.2948C11.1498 24.2265 12.6566 24.2265 13.5825 23.2948L19.0713 17.7295C20.5514 16.2338 19.5436 13.6599 17.3895 13.6599ZM11.9007 21.6103L6.41194 16.045H17.434L11.9007 21.6103ZM6.36847 10.435H17.4251C19.5307 10.435 20.5988 7.86303 19.0984 6.36537L13.5755 0.8433C12.6556 -0.0883916 11.1488 -0.0883916 10.223 0.8433L4.73418 6.4086C3.20759 7.90577 4.25698 10.435 6.36847 10.435ZM11.9007 2.5278L17.3895 8.0931H6.36847L11.9007 2.5278Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledSortRegular);
const SortRegular = /*#__PURE__*/memo(ForwardRef);
export default SortRegular;