{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconNumber3Square/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 IconNumber3Square: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconNumber3Square\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 21H3V3H21V21ZM11.9531 7.56152C10.0723 7.56152 8.83008 8.58105 8.71875 10.1631L8.71289 10.2451H10.6641L10.6699 10.1865C10.7285 9.56543 11.209 9.16113 11.9531 9.16113C12.6797 9.16113 13.1133 9.54785 13.1133 10.1572V10.1689C13.1133 10.7666 12.6094 11.1592 11.7832 11.1592H10.8809V12.6182H11.7949C12.7324 12.6182 13.2598 12.9932 13.2598 13.6729V13.6846C13.2598 14.3115 12.7617 14.751 11.9648 14.751C11.1621 14.751 10.6465 14.335 10.5762 13.7725L10.5645 13.708H8.51367L8.51953 13.7842C8.64258 15.3838 9.9668 16.4385 11.9648 16.4385C14.0918 16.4385 15.4453 15.4131 15.4453 13.8076V13.7959C15.4453 12.6768 14.6309 11.9736 13.3652 11.8447V11.8037C14.3203 11.6104 15.1113 10.9365 15.1113 9.87598V9.86426C15.1113 8.48145 13.8809 7.56152 11.9531 7.56152Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconNumber3Square;\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,gBAA04B,EAA14B,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8uBAA8uB,KAAK,eAAc,CAAI,EACl5B,EAEc",
  "debugId": "893AC6822B5F2D6664756E2164756E21",
  "names": []
}