{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBrain1/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 IconBrain1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconBrain1\"><Path d=\"M21.5 14.6389C21.5 16.1835 20.5521 17.5066 19.2064 18.0585C18.6382 20.0455 16.8084 21.5 14.6389 21.5C13.6624 21.5 12.7548 21.2054 12 20.7001C11.2452 21.2054 10.3376 21.5 9.36111 21.5C7.19161 21.5 5.36181 20.0455 4.79362 18.0585C3.44785 17.5066 2.5 16.1835 2.5 14.6389C2.5 13.6051 2.92458 12.6706 3.60887 12C2.92458 11.3295 2.5 10.3949 2.5 9.36111C2.5 7.45595 3.94208 5.88761 5.79423 5.68809C6.25545 3.85616 7.9138 2.5 9.88889 2.5C10.6579 2.5 11.379 2.70561 12 3.06486C12.621 2.70561 13.3421 2.5 14.1111 2.5C16.0862 2.5 17.7446 3.85616 18.2058 5.68809C20.0579 5.8876 21.5 7.45595 21.5 9.36111C21.5 10.3949 21.0754 11.3295 20.3911 12C21.0754 12.6706 21.5 13.6051 21.5 14.6389Z\" stroke=\"currentColor\"/><Path d=\"M16 10.5C13.7909 10.5 12 8.70914 12 6.5\" stroke=\"currentColor\"/><Path d=\"M8 13.5C10.2091 13.5 12 15.2909 12 17.5\" stroke=\"currentColor\"/><Path d=\"M12 3.34009L12 20.4805\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBrain1;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAk+B,EAAl+B,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,qqBAAqqB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0CAA0C,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0CAA0C,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yBAAyB,OAAO,eAAc,CAAI,EAC1+B,EAEc",
  "debugId": "B70BCAC380E72DDE64756E2164756E21",
  "names": []
}