UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.13 kB
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 StyledBadgeCheckRegular = ({ 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: "M11.255 15.755c-.399.478-1.111.478-1.552 0L7.078 13.13c-.436-.399-.436-1.111 0-1.552.44-.436 1.153-.436 1.552 0l1.87 1.833 4.453-4.458c.44-.436 1.153-.436 1.552 0 .478.44.478 1.153 0 1.552l-5.25 5.25Zm4.875-13.72a5.193 5.193 0 0 1 4.354 1.48c1.191 1.191 1.683 2.77 1.482 4.355C23.16 8.822 24 10.317 24 12c0 1.683-.84 3.178-2.034 4.13a5.194 5.194 0 0 1-1.482 4.354 5.194 5.194 0 0 1-4.354 1.482C15.178 23.16 13.683 24 12 24c-1.683 0-3.178-.84-4.13-2.034-1.584.201-3.164-.291-4.355-1.482a5.195 5.195 0 0 1-1.48-4.354A5.2 5.2 0 0 1 0 12a5.2 5.2 0 0 1 2.035-4.13 5.153 5.153 0 0 1 1.48-4.355 5.155 5.155 0 0 1 4.355-1.48A5.2 5.2 0 0 1 12 0a5.2 5.2 0 0 1 4.13 2.035ZM8.91 4.644l-.848-.273c-1.012-.312-2.198-.065-2.957.734-.799.76-1.046 1.945-.734 2.957l.273.849-.821.478a2.952 2.952 0 0 0 0 5.222l.82.436-.272.848c-.312 1.055-.065 2.199.734 3 .76.797 1.945 1.046 2.957.732l.849-.272.478.825A2.95 2.95 0 0 0 12 21.75a2.95 2.95 0 0 0 2.61-1.57l.437-.825.848.276c1.055.31 2.199.061 3-.736.797-.801 1.046-1.945.732-3l-.272-.848.825-.436A2.95 2.95 0 0 0 21.75 12a2.95 2.95 0 0 0-1.57-2.61l-.825-.48.272-.848c.314-1.012.065-2.198-.732-2.957-.801-.799-1.945-1.046-3-.734l-.848.273-.436-.821a2.952 2.952 0 0 0-5.222 0l-.478.82Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledBadgeCheckRegular); const BadgeCheckRegular = /*#__PURE__*/memo(ForwardRef); export default BadgeCheckRegular;