{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPiggyBankCoin/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 IconPiggyBankCoin: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconPiggyBankCoin\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.0012 5.5C18.0012 6.7486 18.3111 7.74591 18.841 8.4834C19.3654 9.21313 20.1545 9.75775 21.2443 10.0303L22.0012 10.2188V15.2812L21.2443 15.4697C18.9386 16.0463 17.5012 17.8015 17.5012 20V21H13.2804L12.7804 19.5H9.72186L9.22186 21H5.55193L5.25408 20.6641C3.09896 18.2397 1.8576 14.8581 2.05096 11.9951C2.14855 10.5503 2.6197 9.16178 3.61443 8.12695C4.62446 7.07648 6.06954 6.50015 7.88592 6.5H12.1535C13.5045 5.43173 14.8588 4.50015 17.0012 4.5H18.0012V5.5ZM15.2512 10C14.561 10.0002 14.0012 10.5598 14.0012 11.25C14.0012 11.9402 14.561 12.4998 15.2512 12.5C15.9415 12.5 16.5012 11.9404 16.5012 11.25C16.5012 10.5596 15.9415 10 15.2512 10Z\" fill=\"currentColor\"/><Path d=\"M11.0012 2C12.4608 2 13.7372 2.7824 14.4357 3.9502C13.412 4.3308 12.5723 4.90694 11.8058 5.5H7.88592C7.59351 5.50002 7.30745 5.51415 7.0285 5.54102C7.25623 3.54817 8.94736 2.00009 11.0012 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPiggyBankCoin;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAA6/B,EAA7/B,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,moBAAmoB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iMAAiM,KAAK,eAAc,CAAI,EACrgC,EAEc",
  "debugId": "79E1E5816B5240F464756E2164756E21",
  "names": []
}