{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconImagineAi/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 IconImagineAi: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconImagineAi\"><Path d=\"M15.2061 20.5537L12 22.4043L8.79395 20.5537L9.79395 18.8213L12 20.0947L14.2061 18.8213L15.2061 20.5537Z\" fill=\"currentColor\"/><Path d=\"M4.98926 16.0469L7.19629 17.3213L6.19629 19.0537L2.98926 17.2021V13.5H4.98926V16.0469Z\" fill=\"currentColor\"/><Path d=\"M21.0107 17.2021L17.8037 19.0537L16.8037 17.3213L19.0107 16.0469V13.5H21.0107V17.2021Z\" fill=\"currentColor\"/><Path d=\"M12.4502 7.5L13.5752 10.4248L16.5 11.5498V12.4502L13.5752 13.5752L12.4502 16.5H11.5498L10.4248 13.5752L7.5 12.4502V11.5498L10.4248 10.4248L11.5498 7.5H12.4502Z\" fill=\"currentColor\"/><Path d=\"M7.19531 6.67871L4.98926 7.95215V10.5H2.98926V6.79785L6.19531 4.94629L7.19531 6.67871Z\" fill=\"currentColor\"/><Path d=\"M21.0107 6.79785V10.5H19.0107V7.95215L16.8047 6.67871L17.8047 4.94629L21.0107 6.79785Z\" fill=\"currentColor\"/><Path d=\"M15.207 3.44629L14.207 5.17871L12 3.9043L9.79297 5.17871L8.79297 3.44629L12 1.5957L15.207 3.44629Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconImagineAi;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAq/B,EAAr/B,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,0GAA0G,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yFAAyF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yFAAyF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kKAAkK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yFAAyF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yFAAyF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qGAAqG,KAAK,eAAc,CAAI,EAC7/B,EAEc",
  "debugId": "7E65F58A6DCC111864756E2164756E21",
  "names": []
}