{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBalloon/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 IconBalloon: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBalloon\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.67635 3.25864C7.33264 1.77667 9.58091 1 12 1C14.4191 1 16.6674 1.77667 18.3237 3.25864C19.9923 4.75165 21 6.90902 21 9.52857C21 12.8115 19.6207 15.426 17.8313 17.2115C16.8761 18.1646 15.7786 18.9051 14.6816 19.3827L15.8874 23H8.11257L9.31835 19.3827C8.22137 18.9051 7.12393 18.1646 6.16867 17.2115C4.3793 15.426 3 12.8115 3 9.52857C3 6.90902 4.00771 4.75165 5.67635 3.25864ZM11.2393 19.9445L10.8874 21H13.1126L12.7607 19.9445C12.5012 19.9812 12.2469 20 12 20C11.7531 20 11.4988 19.9812 11.2393 19.9445ZM9.85932 7.78683C9.34991 8.26943 9 8.99613 9 9.98571H7C7 8.49001 7.54552 7.22386 8.48382 6.33493C9.41409 5.45362 10.6695 5 12 5V7C11.1214 7 10.3768 7.2966 9.85932 7.78683Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBalloon;\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,gBAA6zB,EAA7zB,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uqBAAuqB,KAAK,eAAc,CAAI,EACr0B,EAEc",
  "debugId": "74A2FBD3AC03B0F264756E2164756E21",
  "names": []
}