{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconStores/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 IconStores: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconStores\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.6771 3H10.323L8.76232 6.90182L9.00776 7H10.8771L11.6771 5H13.1529L12.8196 7H14.8472L15.1805 5H16.8197L17.1047 6.71045C17.2101 7.38702 16.6869 7.99996 16.0002 8V10C16.3516 9.99999 16.6876 9.94245 17.0002 9.83684L17.0002 15H22.0002V9.3378C22.939 8.56544 23.3704 7.23326 22.8664 5.97334L21.6771 3ZM20.1403 8C19.6826 8 19.2921 7.66914 19.2168 7.21772L19.0789 6.39L19.0756 6.36962L18.8473 5H20.323L21.0095 6.71613C21.2555 7.33107 20.8026 8 20.1403 8Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13.6772 9H2.32314L1.1338 11.9733C0.629815 13.2333 1.06126 14.5655 2.00017 15.3379V21H14.0002V15.3379C14.9391 14.5655 15.3705 13.2333 14.8665 11.9733L13.6772 9ZM8.00017 14C7.30959 14 6.78426 13.3801 6.89748 12.6989L7.18063 11H8.81971L9.10278 12.6984C9.21634 13.3798 8.69091 14 8.00017 14ZM3.6772 11H5.15304L4.78342 13.2177C4.70819 13.6691 4.31762 14 3.85998 14C3.19766 14 2.74477 13.3311 2.99075 12.7161L3.6772 11ZM10.8473 11H12.3231L13.0096 12.7161C13.2556 13.3311 12.8027 14 12.1404 14C11.6827 14 11.2922 13.6691 11.2169 13.2177L10.8473 11Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconStores;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAA6rC,EAA7rC,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ocAAoc,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iiBAAiiB,KAAK,eAAc,CAAI,EACrsC,EAEc",
  "debugId": "F96E7CBE60CC364F64756E2164756E21",
  "names": []
}