{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCalculator/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 IconCalculator: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconCalculator\"><Path d=\"M4.5 7.5V21.5H19.5V7.5M4.5 7.5H19.5M4.5 7.5V2.5H19.5V7.5\" stroke=\"currentColor\"/><Path d=\"M9.5 16.125C9.84518 16.125 10.125 16.4048 10.125 16.75C10.125 17.0952 9.84518 17.375 9.5 17.375C9.15482 17.375 8.875 17.0952 8.875 16.75C8.875 16.4048 9.15482 16.125 9.5 16.125ZM14.5 16.125C14.8452 16.125 15.125 16.4048 15.125 16.75C15.125 17.0952 14.8452 17.375 14.5 17.375C14.1548 17.375 13.875 17.0952 13.875 16.75C13.875 16.4048 14.1548 16.125 14.5 16.125ZM9.5 11.625C9.84518 11.625 10.125 11.9048 10.125 12.25C10.125 12.5952 9.84518 12.875 9.5 12.875C9.15482 12.875 8.875 12.5952 8.875 12.25C8.875 11.9048 9.15482 11.625 9.5 11.625ZM14.5 11.625C14.8452 11.625 15.125 11.9048 15.125 12.25C15.125 12.5952 14.8452 12.875 14.5 12.875C14.1548 12.875 13.875 12.5952 13.875 12.25C13.875 11.9048 14.1548 11.625 14.5 11.625Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/></CentralIconBase>;\n});\n\nexport default IconCalculator;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAA28B,EAA38B,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,2DAA2D,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mtBAAmtB,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,CAAI,EACn9B,EAEc",
  "debugId": "566067C86BB0E2F564756E2164756E21",
  "names": []
}