{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCryptoCoin/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 IconCryptoCoin: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconCryptoCoin\"><Path d=\"M12.5135 6.5V5.98649H11.4865V6.5H12.5135ZM11.4865 17.5V18.0135H12.5135V17.5H11.4865ZM20.9865 12C20.9865 16.9631 16.9631 20.9865 12 20.9865V22.0135C17.5303 22.0135 22.0135 17.5303 22.0135 12H20.9865ZM12 20.9865C7.0369 20.9865 3.01351 16.9631 3.01351 12H1.98649C1.98649 17.5303 6.46969 22.0135 12 22.0135V20.9865ZM3.01351 12C3.01351 7.0369 7.0369 3.01351 12 3.01351V1.98649C6.46969 1.98649 1.98649 6.46969 1.98649 12H3.01351ZM12 3.01351C16.9631 3.01351 20.9865 7.0369 20.9865 12H22.0135C22.0135 6.46969 17.5303 1.98649 12 1.98649V3.01351ZM11.4865 6.5V8.25H12.5135V6.5H11.4865ZM11.4865 15.75V17.5H12.5135V15.75H11.4865ZM12 15.2365C10.2125 15.2365 8.76351 13.7875 8.76351 12H7.73649C7.73649 14.3547 9.64533 16.2635 12 16.2635V15.2365ZM8.76351 12C8.76351 10.2125 10.2125 8.76351 12 8.76351V7.73649C9.64533 7.73649 7.73649 9.64533 7.73649 12H8.76351ZM12 8.76351C13.1523 8.76351 14.1644 9.36534 14.7386 10.2742L15.6069 9.72575C14.8525 8.53149 13.5193 7.73649 12 7.73649V8.76351ZM14.7386 13.7257C14.1644 14.6347 13.1523 15.2365 12 15.2365V16.2635C13.5193 16.2635 14.8525 15.4685 15.6069 14.2743L14.7386 13.7257Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCryptoCoin;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAusC,EAAvsC,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,klCAAklC,KAAK,eAAc,CAAI,EAC/sC,EAEc",
  "debugId": "5E4A05B50E7415E764756E2164756E21",
  "names": []
}