{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconThinkingBubble/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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconThinkingBubble: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconThinkingBubble\"><Circle cx=\"4.75\" cy=\"19.25\" r=\"2.25\" stroke=\"currentColor\"/><Path d=\"M16.0605 4.82485C16.4379 4.71353 16.8371 4.65385 17.25 4.65385C19.5972 4.65385 21.5 6.58247 21.5 8.96154C21.5 10.7085 20.474 12.2126 18.9994 12.8885C18.3325 14.3831 16.8486 15.4231 15.125 15.4231C14.2214 15.4231 13.3837 15.1373 12.6951 14.65C12.1843 15.7436 11.0855 16.5 9.8125 16.5C8.05209 16.5 6.625 15.0535 6.625 13.2692C6.625 13.0818 6.64074 12.8982 6.67096 12.7195C5.37533 11.9815 4.5 10.5751 4.5 8.96154C4.5 6.58247 6.40279 4.65385 8.75 4.65385C9.1629 4.65385 9.56205 4.71353 9.93951 4.82484C10.3259 3.48151 11.5499 2.5 13 2.5C14.4501 2.5 15.6741 3.48151 16.0605 4.82485Z\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconThinkingBubble;\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,iBAAS,UAAQ,yBAEV,IAAM,EAAuE,EAAM,KAAK,CAAC,IAAU,CACxG,OAAO,gBAA4vB,EAA5vB,IAAqB,EAAO,OAAO,wDAAuD,gBAAC,EAAD,CAAQ,GAAG,OAAO,GAAG,QAAQ,EAAE,OAAO,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,okBAAokB,OAAO,eAAc,CAAI,EACpwB,EAEc",
  "debugId": "C6822F371E017A8664756E2164756E21",
  "names": []
}