{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBubble5/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 IconBubble5: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBubble5\"><Path d=\"M11.9996 3C15.0643 3 17.6894 3.79161 19.567 5.35691C21.4664 6.94042 22.4996 9.23347 22.4996 12C22.4996 14.7665 21.4664 17.0596 19.567 18.6431C17.6894 20.2084 15.0643 21 11.9996 21C10.3803 21 8.55699 20.8505 6.91531 20.1378C6.6362 20.2938 6.25189 20.4834 5.79552 20.6417C4.8443 20.9717 3.45858 21.2047 2.07147 20.5477L0.958984 20.0207L1.7027 19.0398C2.39109 18.1318 2.60803 17.4277 2.66811 16.9774C2.72593 16.544 2.64498 16.2957 2.6356 16.2688L2.63625 16.2704C2.63625 16.2704 2.63566 16.2689 2.63478 16.2665L2.6356 16.2688C2.6356 16.2688 2.63454 16.2662 2.63365 16.2641L2.62597 16.2461L2.61319 16.2158C2.53661 16.0322 2.26563 15.3691 2.01215 14.578C1.76889 13.8187 1.49956 12.8165 1.49956 12C1.49956 9.23347 2.53272 6.94042 4.43213 5.35691C6.30971 3.79161 8.93487 3 11.9996 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBubble5;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAA03B,EAA13B,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,0wBAA0wB,KAAK,eAAc,CAAI,EACl4B,EAEc",
  "debugId": "E3D7E5BAE4AC63E564756E2164756E21",
  "names": []
}