UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.22 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 StyledPawSimpleSolid = ({ 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: "M7.71429 5.14225C9.13393 5.14225 10.2857 3.99046 10.2857 2.57082C10.2857 1.15118 9.13393 -0.000610352 7.71429 -0.000610352C6.29464 -0.000610352 5.14286 1.15118 5.14286 2.57082C5.14286 3.99046 6.29464 5.14225 7.71429 5.14225ZM5.14286 8.57082C5.14286 7.15118 3.99107 5.99939 2.57143 5.99939C1.15179 5.99939 0 7.15118 0 8.57082C0 9.99046 1.15179 11.1422 2.57143 11.1422C3.99107 11.1422 5.14286 9.99046 5.14286 8.57082ZM16.2857 5.14225C17.7054 5.14225 18.8571 3.99046 18.8571 2.57082C18.8571 1.15118 17.7054 -0.000610352 16.2857 -0.000610352C14.8661 -0.000610352 13.7143 1.15118 13.7143 2.57082C13.7143 3.99046 14.8661 5.14225 16.2857 5.14225ZM21.4286 5.99939C20.0089 5.99939 18.8571 7.15118 18.8571 8.57082C18.8571 9.99046 20.0089 11.1422 21.4286 11.1422C22.8482 11.1422 24 9.99046 24 8.57082C24 7.15118 22.8482 5.99939 21.4286 5.99939ZM19.6714 14.3994C18.2652 13.6092 17.1471 11.1112 16.0757 9.16225C15.2357 7.6226 13.6232 6.85653 12 6.85653C10.3768 6.85653 8.76429 7.6226 7.92321 9.1601C6.83036 11.1369 5.775 13.5797 4.31946 14.3994C2.76589 15.2726 1.71429 16.9333 1.71429 18.8565C1.71429 21.6964 4.01786 23.993 6.85714 23.993C9.62946 24.0934 10.7277 22.2851 12 22.2851C13.2723 22.2851 14.3705 24.0931 17.1429 23.993C19.9821 23.993 22.2857 21.6958 22.2857 18.8565C22.2857 16.9333 21.2357 15.2726 19.6714 14.3994Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledPawSimpleSolid); const PawSimpleSolid = /*#__PURE__*/memo(ForwardRef); export default PawSimpleSolid;