{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCurrencyPounds/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 IconCurrencyPounds: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconCurrencyPounds\"><Path d=\"M13.5156 3C15.3276 3.00019 16.9315 3.87826 17.9404 5.22363L18.1338 5.49902L18.8223 6.54199L16.7363 7.91895L16.0479 6.87598L15.9395 6.72266C15.3782 5.97394 14.498 5.50019 13.5156 5.5C11.8481 5.5 10.4668 6.87561 10.4668 8.60938C10.4668 9.16357 10.5397 9.96521 10.6182 11H15V13.5H10.7529C10.7653 14.0936 10.7604 14.6972 10.7236 15.2871C10.6561 16.3704 10.4779 17.5166 10.0459 18.5H19V21H5V18.5H6.35059C6.98994 18.4999 7.34219 18.2515 7.62109 17.7695C7.95445 17.1933 8.1561 16.2923 8.22852 15.1318C8.26141 14.6045 8.26476 14.0545 8.25195 13.5H5V11H8.11035C8.03999 10.0949 7.9668 9.22099 7.9668 8.60938C7.9668 5.5279 10.4346 3 13.5156 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCurrencyPounds;\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,EAAuE,EAAM,KAAK,CAAC,IAAU,CACxG,OAAO,gBAAkvB,EAAlvB,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,EAAE,2nBAA2nB,KAAK,eAAc,CAAI,EAC1vB,EAEc",
  "debugId": "4B2A3677077AA04864756E2164756E21",
  "names": []
}