{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMathBasic/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 IconMathBasic: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconMathBasic\"><Path d=\"M8 6V3H6V6H3V8H6V11H8V8H11V6H8Z\" fill=\"currentColor\"/><Path d=\"M21 6H13V8H21V6Z\" fill=\"currentColor\"/><Path d=\"M13 16H21V18H13V16Z\" fill=\"currentColor\"/><Path d=\"M6.99992 15.5858L4.4999 13.0858L3.08569 14.5L5.58571 17L3.08569 19.5L4.49991 20.9142L6.99992 18.4142L9.4999 20.9142L10.9141 19.5L8.41413 17L10.9141 14.5L9.49991 13.0858L6.99992 15.5858Z\" fill=\"currentColor\"/><Path d=\"M15.8999 14C15.8999 13.3925 16.3924 12.9 16.9999 12.9C17.6074 12.9 18.1 13.3925 18.1 14C18.1 14.6075 17.6075 15.1 17 15.1C16.3925 15.1 15.8999 14.6075 15.8999 14Z\" fill=\"currentColor\"/><Path d=\"M16.9999 18.9C16.3924 18.9 15.8999 19.3925 15.8999 20C15.8999 20.6075 16.3924 21.1 16.9999 21.1C17.6074 21.1 18.1 20.6075 18.1 20C18.1 19.3925 17.6074 18.9 16.9999 18.9Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMathBasic;\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,gBAA21B,EAA31B,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,kCAAkC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sBAAsB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4LAA4L,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qKAAqK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4KAA4K,KAAK,eAAc,CAAI,EACn2B,EAEc",
  "debugId": "03562E495459296864756E2164756E21",
  "names": []
}