@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.23 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 StyledCheckRegular = ({
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: "M23.5768 4.37527C24.1232 4.87884 24.1232 5.69313 23.5768 6.14848L9.43393 20.2913C8.97857 20.8378 8.16429 20.8378 7.66071 20.2913L0.376554 13.0056C-0.125518 12.5503 -0.125518 11.736 0.376554 11.2324C0.878571 10.7342 1.69286 10.7342 2.19482 11.2324L8.57143 17.6128L21.8036 4.37527C22.3071 3.87491 23.1214 3.87491 23.5768 4.37527Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCheckRegular);
const CheckRegular = /*#__PURE__*/memo(ForwardRef);
export default CheckRegular;