{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBrainSideview/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 IconBrainSideview: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconBrainSideview\"><Path d=\"M10.5783 4.32069C11.2318 3.80888 11.9478 3.51194 12.5957 3.5C13.7581 3.51492 14.6021 3.8999 15.307 4.65344C15.5839 4.95053 16.0837 4.91793 16.4513 4.95934C17.6971 5.10259 18.5161 5.88299 19.0403 7.03643C19.5408 8.1395 20.8523 8.39508 21.2816 9.70443C21.4999 10.3669 21.5819 11.0548 21.3998 11.7114C21.2482 12.2516 21.3914 12.732 21.4498 13.2334C21.5819 14.3645 21.2997 15.3493 20.553 16.1551C20.2457 16.4848 19.8745 16.7475 19.5311 17.0369C18.986 17.498 18.3812 17.8233 17.6874 17.9158C17.0826 17.9964 16.4917 17.9337 15.9285 17.6442C15.8284 17.592 15.6574 17.6084 15.5559 17.6666C14.1837 18.4429 13.208 19.1079 11.5404 18.4082C9.94102 17.7543 8.30555 21.5 8.30555 21.5H5.66667C5.74398 20.9833 6.32613 19.2884 5.92737 18.8216C5.53945 18.3694 5.15292 17.9009 4.70243 17.5249C3.6193 16.6191 3.12849 15.4627 3.22582 13.9959C3.24111 13.7706 3.13544 13.5303 3.05897 13.3065C2.89351 12.8231 2.62656 12.3605 2.55008 11.8636C2.34708 10.5445 2.76838 9.43136 3.68326 8.52114C3.87097 8.33611 4.04477 8.09289 4.13236 7.83922C4.83869 5.78451 6.21519 4.60719 8.21041 4.31771C8.8361 4.22668 9.49376 4.40127 10.1375 4.4341C10.2835 4.44156 10.4643 4.41022 10.5783 4.32069Z\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBrainSideview;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAAgwC,EAAhwC,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,EAAE,soCAAsoC,OAAO,eAAc,CAAI,EACxwC,EAEc",
  "debugId": "02EC7AEAC9F7744E64756E2164756E21",
  "names": []
}