@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.54 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 StyledBadgeCheckSolid = ({
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: "M12 0a4.5 4.5 0 0 1 3.98 2.395c1.542-.515 3.243-.1 4.504 1.12 1.22 1.22 1.552 2.963 1.12 4.505A4.5 4.5 0 0 1 24 12a4.5 4.5 0 0 1-2.395 3.98c.473 1.542.098 3.243-1.12 4.504-1.262 1.22-2.963 1.552-4.505 1.12A4.5 4.5 0 0 1 12 24a4.5 4.5 0 0 1-3.98-2.395 4.5 4.5 0 0 1-4.505-1.12c-1.22-1.262-1.593-2.963-1.12-4.505A4.5 4.5 0 0 1 0 12a4.5 4.5 0 0 1 2.395-3.98c-.515-1.542-.1-3.286 1.12-4.505a4.497 4.497 0 0 1 4.505-1.12A4.5 4.5 0 0 1 12 0Zm4.505 10.505c.478-.399.478-1.111 0-1.552-.399-.436-1.111-.436-1.552 0L10.5 13.411l-1.87-1.833c-.399-.436-1.111-.436-1.552 0-.436.44-.436 1.153 0 1.552l2.625 2.625c.44.478 1.153.478 1.552 0l5.25-5.25Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledBadgeCheckSolid);
const BadgeCheckSolid = /*#__PURE__*/memo(ForwardRef);
export default BadgeCheckSolid;