{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBeta/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 IconBeta: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBeta\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7 8.5C7 5.46243 9.46243 3 12.5 3C15.5734 3 17.4528 5.16369 17.6595 7.4083C17.7624 8.52544 17.4513 9.69056 16.6354 10.5816C16.6072 10.6124 16.5785 10.6428 16.5493 10.6727C17.0045 10.9087 17.4044 11.2025 17.7449 11.5473C18.7089 12.5233 19.1065 13.8184 19.0024 15.0821C18.7923 17.6332 16.5784 20 13 20C11.4633 20 10.0615 19.4223 9 18.4722V19C9 20.6569 7.65685 22 6 22H5V20H6C6.55228 20 7 19.5523 7 19V8.5ZM9 14C9 16.2091 10.7909 18 13 18C15.6037 18 16.8898 16.3668 17.0092 14.9179C17.0698 14.1816 16.8395 13.4767 16.322 12.9527C15.8072 12.4315 14.9173 12 13.5 12H12V10H13C14.1156 10 14.7833 9.6427 15.1603 9.23093C15.5463 8.80944 15.7263 8.22456 15.668 7.5917C15.5524 6.33631 14.5003 5 12.5 5C10.567 5 9 6.567 9 8.5V14Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBeta;\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,EAA6D,EAAM,KAAK,CAAC,IAAU,CAC9F,OAAO,gBAAm2B,EAAn2B,IAAqB,EAAO,OAAO,4CAA2C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gtBAAgtB,KAAK,eAAc,CAAI,EAC32B,EAEc",
  "debugId": "DB5A658E32C6F28464756E2164756E21",
  "names": []
}