{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPiggyBank/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 IconPiggyBank: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconPiggyBank\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.5 3H5.5C7.24328 3 8.45581 3.58785 9.24068 4.22236C9.57867 4.4956 9.83005 4.7713 10.0085 5.00004H14C17.8663 5.00004 21 8.13371 21 12C21 12.6815 20.9021 13.3393 20.72 13.9609C20.8082 13.9864 20.9017 14 20.999 14C21.5512 14 21.999 13.5523 21.999 13C21.999 12.8162 21.9503 12.6468 21.8658 12.5008L21.3651 11.6352L23.0963 10.6337L23.597 11.4993C23.8528 11.9416 23.999 12.4553 23.999 13C23.999 14.6569 22.6558 16 20.999 16C20.6053 16 20.2284 15.9238 19.8831 15.7853C19.6258 16.1829 19.3295 16.5527 19 16.8893V21H13V19H11V21H5V17.5509C4.37079 17.1192 3.88101 16.6316 3.44811 16H1V8.93505H3.32378C3.60965 8.28652 3.98098 7.64375 4.5 7.08356V3ZM8.25 12C8.94036 12 9.5 11.4404 9.5 10.75C9.5 10.0597 8.94036 9.50005 8.25 9.50005C7.55964 9.50005 7 10.0597 7 10.75C7 11.4404 7.55964 12 8.25 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPiggyBank;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAA26B,EAA36B,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mxBAAmxB,KAAK,eAAc,CAAI,EACn7B,EAEc",
  "debugId": "8892028A8604937B64756E2164756E21",
  "names": []
}