{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBubbleQuestion/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 IconBubbleQuestion: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBubbleQuestion\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.002 3V19.0357L15.3757 19.0358L11.9939 21.8375L8.65157 19.0358H3.00195V3.00003L21.002 3ZM12.1234 6.91333C10.7334 6.91333 9.62341 8.04769 9.62341 9.42768H11.6234C11.6234 9.13426 11.8559 8.91333 12.1234 8.91333C12.3909 8.91333 12.6234 9.13426 12.6234 9.42768L12.621 9.44725C12.6163 9.48837 12.6119 9.52555 12.586 9.56084C12.5488 9.61135 12.4762 9.67979 12.3191 9.78657L12.2762 9.81557C11.9079 10.0634 10.9998 10.6746 10.9998 11.9141V12.9141H12.9998V11.9141C12.9998 11.8606 13.0086 11.8318 13.0148 11.816C13.0217 11.7984 13.0344 11.7746 13.0623 11.7416C13.1327 11.6582 13.2367 11.5812 13.4435 11.4406C13.8798 11.144 14.6234 10.5556 14.6234 9.42768C14.6234 8.04769 13.5134 6.91333 12.1234 6.91333ZM10.9998 14H12.9998V16H10.9998V14Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBubbleQuestion;\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,EAAuE,EAAM,KAAK,CAAC,IAAU,CACxG,OAAO,gBAA03B,EAA13B,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6tBAA6tB,KAAK,eAAc,CAAI,EACl4B,EAEc",
  "debugId": "49C87D8D5F2C20B664756E2164756E21",
  "names": []
}