@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.14 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 StyledSend = ({
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: "M0.465649 8.37909C-0.154223 8.1722 -0.160161 7.83808 0.477524 7.62524L23.1432 0.0606097C23.7714 -0.14866 24.1312 0.203294 23.9555 0.819213L17.4789 23.5131C17.3008 24.1421 16.9386 24.1635 16.6726 23.5666L12.4047 13.9497L19.5297 4.43744L10.0297 11.5716L0.465649 8.37909V8.37909Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledSend);
const Send = /*#__PURE__*/memo(ForwardRef);
export default Send;