{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDecimalNumberComma/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 IconDecimalNumberComma: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconDecimalNumberComma\"><Path d=\"M14.2539 17.3301V16.627L17.894 12.7231C19.3589 11.1558 19.7764 10.5405 19.7764 9.58105V9.56641C19.7764 8.35059 18.8755 7.42041 17.5205 7.42041C16.1436 7.42041 15.1841 8.34326 15.1694 9.67627V9.68359H14.21L14.1953 9.67627C14.2173 7.85254 15.6235 6.5415 17.5791 6.5415C19.4028 6.5415 20.7944 7.79395 20.7944 9.47119V9.48584C20.7944 10.665 20.2817 11.5366 18.4214 13.4629L15.6528 16.334V16.4219H21.0508V17.3301H14.2539Z\" fill=\"currentColor\"/><Path d=\"M10.8438 19.8862L11.5103 15.9897H12.6309L11.5762 19.8862H10.8438Z\" fill=\"currentColor\"/><Path d=\"M6.63525 17.5498C4.31348 17.5498 2.92188 15.4258 2.92188 12.0566V12.0347C2.92188 8.6582 4.31348 6.5415 6.63525 6.5415C8.95703 6.5415 10.3633 8.6582 10.3633 12.0347V12.0566C10.3633 15.4331 8.95703 17.5498 6.63525 17.5498ZM6.63525 16.6709C8.3418 16.6709 9.35986 14.8911 9.35986 12.0566V12.0347C9.35986 9.19287 8.3418 7.42773 6.63525 7.42773C4.93604 7.42773 3.92529 9.2002 3.92529 12.0347V12.0566C3.92529 14.8911 4.93604 16.6709 6.63525 16.6709Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconDecimalNumberComma;\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,EAA2E,EAAM,KAAK,CAAC,IAAU,CAC5G,OAAO,gBAA2lC,EAA3lC,IAAqB,EAAO,OAAO,4DAA2D,gBAAC,EAAD,CAAM,EAAE,maAAma,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oEAAoE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6bAA6b,KAAK,eAAc,CAAI,EACnmC,EAEc",
  "debugId": "4D8666C75DC1BFC364756E2164756E21",
  "names": []
}