{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconNumber6Square/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 IconNumber6Square: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconNumber6Square\"><Path d=\"M12.1172 12.1582C12.8906 12.1582 13.4531 12.709 13.4531 13.4766V13.4883C13.4531 14.2266 12.8555 14.8008 12.1113 14.8008C11.3613 14.8008 10.7695 14.2207 10.7695 13.4531V13.4414C10.7695 12.6855 11.3613 12.1582 12.1172 12.1582Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 21H3V3H21V21ZM12.0996 7.54688C9.87305 7.54688 8.4668 9.22852 8.4668 12.0293V12.041C8.4668 14.9062 9.94336 16.4531 12.123 16.4531C14.1328 16.4531 15.5098 15.1523 15.5098 13.4062V13.3945C15.5098 11.8066 14.4375 10.6523 12.7617 10.6523C11.5781 10.6523 10.9219 11.2207 10.6172 11.8535H10.4941C10.4941 11.7891 10.4941 11.7246 10.5 11.666C10.5645 10.248 11.0508 9.20508 12.1113 9.20508C12.7031 9.20508 13.125 9.51562 13.3008 9.94922L13.3184 9.99609H15.4043L15.3926 9.94922C15.1465 8.58398 13.8457 7.54688 12.0996 7.54688Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconNumber6Square;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAAs6B,EAAt6B,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,mOAAmO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0gBAA0gB,KAAK,eAAc,CAAI,EAC96B,EAEc",
  "debugId": "24BFA663D31EDD9464756E2164756E21",
  "names": []
}