{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAiTranslate/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 IconAiTranslate: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAiTranslate\"><Path d=\"M21.3301 20.4814L19.5186 21.3301L18.4268 19H13.5732L12.4805 21.3301L10.6699 20.4814L15.1143 11H16.8857L21.3301 20.4814ZM14.5107 17H17.4893L16 13.8223L14.5107 17ZM8 6H12V8H10.3721C10.0596 9.91164 9.44305 11.5249 8.43652 12.8193C9.18743 13.3442 10.1107 13.7474 11.2422 14.0303L12.2129 14.2725L11.7275 16.2129L10.7568 15.9707C9.29625 15.6055 8.0407 15.0424 7 14.2451C5.9592 15.0425 4.70294 15.6045 3.24219 15.9697L2.27246 16.2129L1.78711 14.2725L2.75684 14.0303C3.8883 13.7474 4.8116 13.3432 5.5625 12.8184C4.55614 11.524 3.93935 9.91149 3.62695 8H2V6H6V4H8V6ZM5.6582 8C5.92419 9.41421 6.37373 10.5272 7 11.4014C7.62628 10.5272 8.07581 9.41419 8.3418 8H5.6582ZM17.8496 2L18.7246 4.27539L21 5.15039V5.84961L18.7246 6.72461L17.8496 9H17.1504L16.2754 6.72461L14 5.84961V5.15039L16.2754 4.27539L17.1504 2H17.8496Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAiTranslate;\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,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAA65B,EAA75B,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,yyBAAyyB,KAAK,eAAc,CAAI,EACr6B,EAEc",
  "debugId": "5D1B59B4ED2D337864756E2164756E21",
  "names": []
}