@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.21 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 StyledCheckSolid = ({
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.4964 3.64561C24.1661 4.31526 24.1661 5.3974 23.4964 6.06704L9.78214 19.7813C9.1125 20.451 8.03036 20.451 7.36071 19.7813L0.502071 12.9242C-0.167357 12.2545 -0.167357 11.1724 0.502071 10.5028C1.17161 9.83311 2.25696 9.83311 2.92661 10.5028L8.52321 16.1438L21.075 3.64561C21.7446 2.9749 22.8268 2.9749 23.4964 3.64561Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCheckSolid);
const CheckSolid = /*#__PURE__*/memo(ForwardRef);
export default CheckSolid;