{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBugFace/index.tsx"],
  "sourcesContent": [
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n    >\n      {masked ? (\n        <>\n          <Mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconBugFace: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBugFace\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.62249 3.28787C4.05857 2.68661 4.84595 2 6.07622 2C7.96291 2 9.07871 3.49785 9.71647 4.81382C9.78301 4.95111 9.84657 5.09086 9.90731 5.23217C10.5805 5.08025 11.2815 5 12 5C12.7185 5 13.4195 5.08025 14.0927 5.23217C14.1534 5.09086 14.217 4.95111 14.2835 4.81382C14.9213 3.49785 16.0371 2 17.9238 2C19.154 2 19.9414 2.68661 20.3775 3.28787C20.5933 3.58535 20.7366 3.87675 20.8261 4.0912C20.8715 4.19984 20.9046 4.29257 20.9274 4.36168C20.9389 4.39634 20.9478 4.42536 20.9544 4.44781L20.9626 4.47655L20.9655 4.48708L20.9667 4.49136L20.9672 4.49324L20.9676 4.49496L20.0007 4.74998L20.8466 4.52704C20.9669 4.49538 20.9677 4.49517 20.9676 4.49496L21.2227 5.46189L19.2888 5.97193L19.0356 5.012C19.0345 5.0083 19.032 5.00005 19.028 4.98788C19.0192 4.96129 19.0037 4.91731 18.9806 4.86188C18.9331 4.74822 18.8601 4.60212 18.7585 4.46211C18.56 4.18838 18.3089 4 17.9238 4C17.272 4 16.6571 4.50209 16.0833 5.68604C16.0521 5.75047 16.0216 5.81572 15.9918 5.8817C18.941 7.26207 21 10.1273 21 13.5C21 18.2542 16.9088 22 12 22C7.09121 22 3 18.2542 3 13.5C3 10.1273 5.059 7.26207 8.0082 5.8817C7.9784 5.81572 7.94791 5.75047 7.91669 5.68604C7.34291 4.50209 6.72796 4 6.07622 4C5.69111 4 5.44002 4.18838 5.24149 4.46211C5.13994 4.60212 5.06689 4.74822 5.01943 4.86188C4.99628 4.91731 4.98077 4.96129 4.97201 4.98788C4.96799 5.00005 4.96549 5.0083 4.96439 5.012L4.71122 5.97193L2.77734 5.46189L3.03236 4.49497C3.03233 4.49518 3.03404 4.49563 3.15338 4.52704L3.9993 4.74998L3.03236 4.49497L3.03282 4.49324L3.03332 4.49136L3.03447 4.48708L3.03737 4.47655L3.04561 4.44781C3.05222 4.42536 3.06114 4.39634 3.07257 4.36168C3.09535 4.29257 3.12852 4.19984 3.17388 4.0912C3.26343 3.87675 3.40673 3.58535 3.62249 3.28787ZM10.5 13.75C10.5 14.7165 9.82843 15.5 9 15.5C8.17157 15.5 7.5 14.7165 7.5 13.75C7.5 12.7835 8.17157 12 9 12C9.82843 12 10.5 12.7835 10.5 13.75ZM12 18C12.8284 18 13.5 17.5523 13.5 17C13.5 16.4477 12.8284 16 12 16C11.1716 16 10.5 16.4477 10.5 17C10.5 17.5523 11.1716 18 12 18ZM16.5 13.75C16.5 14.7165 15.8284 15.5 15 15.5C14.1716 15.5 13.5 14.7165 13.5 13.75C13.5 12.7835 14.1716 12 15 12C15.8284 12 16.5 12.7835 16.5 13.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBugFace;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAA+tE,EAA/tE,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ykEAAykE,KAAK,eAAc,CAAI,EACvuE,EAEc",
  "debugId": "91E8E4CFBD5388A564756E2164756E21",
  "names": []
}