{
  "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-outlined-radius-0-stroke-1-IconStores\"><Path d=\"M2.5 14.5V20.5H13.5V14.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M6.00045 9.5H2.50045L1.7732 11.9242C1.38806 13.208 2.34938 14.5 3.68969 14.5C4.71764 14.5 5.57834 13.7211 5.68063 12.6982L6.00045 9.5ZM6.00045 9.5H10.0005M10.0005 9.5H13.5005L14.2277 11.9242C14.6128 13.208 13.6515 14.5 12.3112 14.5C11.2833 14.5 10.4226 13.7211 10.3203 12.6982L10.0005 9.5Z\" stroke=\"currentColor\"/><Path d=\"M9.99999 9.5L10.2512 12.0124C10.3844 13.3443 9.33852 14.5 7.99999 14.5C6.66147 14.5 5.61556 13.3443 5.74875 12.0124L5.99999 9.5\" stroke=\"currentColor\"/><Path d=\"M17.5 14.5H21.5V8.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M18 4L18.3014 6.71218C18.4144 7.72999 19.2747 8.5 20.2988 8.5C21.6451 8.5 22.6107 7.20223 22.2238 5.91274L21.5 3.5H10.5L9.75 6M13.75 6L14 4\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M18.2791 6.51221C18.397 7.57259 17.5669 8.49997 16.5 8.49997\" stroke=\"currentColor\" strokeLinecap=\"square\"/></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,gBAA8gC,EAA9gC,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,2BAA2B,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,oSAAoS,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kIAAkI,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sBAAsB,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,8IAA8I,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,+DAA+D,OAAO,eAAe,cAAc,SAAQ,CAAI,EACthC,EAEc",
  "debugId": "351417AA9CE2975864756E2164756E21",
  "names": []
}