{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMathScientific/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 IconMathScientific: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconMathScientific\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7 7C6.33473 7 5.76697 7.48097 5.6576 8.13719L5.43046 9.5H7.5V11.5H5.09713L4.31519 16.1916C4.04509 17.8122 2.64295 19 1 19H0V17H1C1.66527 17 2.23303 16.519 2.3424 15.8628L3.06954 11.5H1.5V9.5H3.40287L3.68481 7.80839C3.95491 6.18779 5.35705 5 7 5H8V7H7ZM12.2933 6.42786L11.9327 7.36058C10.6891 10.5775 10.6891 13.4225 11.9327 16.6394L12.2933 17.5721L10.4279 18.2933L10.0673 17.3606C8.64424 13.6796 8.64424 10.3204 10.0673 6.63942L10.4279 5.70669L12.2933 6.42786ZM22.5721 5.70669L22.9327 6.63942C24.3558 10.3204 24.3558 13.6796 22.9327 17.3606L22.5721 18.2933L20.7067 17.5721L21.0673 16.6394C22.3109 13.4225 22.3109 10.5775 21.0673 7.36058L20.7067 6.42786L22.5721 5.70669ZM14.6562 8.09444L16.5 10.3992L18.3438 8.09444L19.9056 9.34383L17.7806 12L19.9056 14.6562L18.3438 15.9056L16.5 13.6008L14.6562 15.9056L13.0944 14.6562L15.2194 12L13.0944 9.34383L14.6562 8.09444Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMathScientific;\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,EAAuE,EAAM,KAAK,CAAC,IAAU,CACxG,OAAO,gBAA+/B,EAA//B,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,k2BAAk2B,KAAK,eAAc,CAAI,EACvgC,EAEc",
  "debugId": "0E168D3F722C68E664756E2164756E21",
  "names": []
}