{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconVisualIntelligence/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 IconVisualIntelligence: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconVisualIntelligence\"><Path d=\"M4.99223 8.13558C3.31338 11.1765 3.76552 15.0782 6.34282 17.6561C8.92069 20.234 12.8231 20.6866 15.8643 19.0077L16.8311 20.7577C13.0309 22.8557 8.15345 22.2957 4.92875 19.0711C1.7043 15.8464 1.1432 10.9689 3.24125 7.16879L4.99223 8.13558Z\" fill=\"currentColor\"/><Path d=\"M7.16899 3.24105C10.9692 1.14297 15.8466 1.70399 19.0713 4.92855C22.296 8.15327 22.856 13.0307 20.7579 16.8309L19.0079 15.8641C20.6869 12.8229 20.2342 8.92051 17.6563 6.34261C15.0784 3.76521 11.1767 3.31315 8.13578 4.99203L7.16899 3.24105Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 7.49984C14.2313 7.49984 16.2446 8.98764 17.8399 11.4569L18.1905 11.9998L17.8399 12.5428C16.2446 15.0122 14.2314 16.4998 12 16.4998C9.7688 16.4997 7.75544 15.0121 6.1602 12.5428L5.80961 11.9998L6.1602 11.4569C7.75544 8.98758 9.76882 7.49997 12 7.49984ZM12 10.7498C11.3098 10.7499 10.7501 11.3096 10.75 11.9998C10.75 12.6902 11.3097 13.2498 12 13.2498C12.6904 13.2498 13.25 12.6902 13.25 11.9998C13.25 11.3095 12.6904 10.7498 12 10.7498Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconVisualIntelligence;\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,EAA2E,EAAM,KAAK,CAAC,IAAU,CAC5G,OAAO,gBAAwnC,EAAxnC,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,EAAE,iPAAiP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0bAA0b,KAAK,eAAc,CAAI,EAChoC,EAEc",
  "debugId": "AD5F0F84A0C49D9764756E2164756E21",
  "names": []
}