{
  "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-filled-radius-0-stroke-2-IconBrain1\"><Path d=\"M11 2.10021C10.6766 2.03449 10.3421 2 10 2C7.89225 2 6.09097 3.30344 5.35484 5.14722C3.42387 5.65404 2 7.4102 2 9.5C2 10.4247 2.27964 11.2851 2.75796 12C2.27964 12.7149 2 13.5753 2 14.5C2 16.2118 2.95553 17.6984 4.35942 18.459C5.14867 20.5286 7.15137 22 9.5 22C10.0195 22 10.5228 21.9277 11 21.7927L11 17C11 15.8954 10.1046 15 9 15H8V13H9C9.72858 13 10.4117 13.1948 11 13.5351L11 2.10021Z\" fill=\"currentColor\"/><Path d=\"M13 21.7927C13.4772 21.9277 13.9805 22 14.5 22C16.8486 22 18.8513 20.5286 19.6406 18.459C21.0445 17.6984 22 16.2118 22 14.5C22 13.5753 21.7204 12.7149 21.242 12C21.7204 11.2851 22 10.4247 22 9.5C22 7.4102 20.5761 5.65404 18.6452 5.14722C17.909 3.30344 16.1077 2 14 2C13.6579 2 13.3234 2.03449 13 2.10021V7.00325C13.0018 8.10632 13.8965 9 15 9H16V11H15C14.2714 11 13.5883 10.8052 13 10.4649L13 21.7927Z\" fill=\"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,gBAAu6B,EAAv6B,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,EAAE,uYAAuY,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oZAAoZ,KAAK,eAAc,CAAI,EAC/6B,EAEc",
  "debugId": "05371BC20BE5D75F64756E2164756E21",
  "names": []
}