{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconStore3/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 IconStore3: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconStore3\"><Path d=\"M3.00049 12.5287C3.66325 12.8301 4.40462 13 5.19696 13C6.0136 13 6.78829 12.8146 7.47995 12.4843C8.16733 12.8145 8.93801 13 9.7507 13C10.5552 13 11.3185 12.8182 12.0007 12.4942C12.6829 12.8182 13.4462 13 14.2507 13C15.0634 13 15.8341 12.8145 16.5215 12.4843C17.2131 12.8146 17.9878 13 18.8044 13C19.5966 13 20.3378 12.8302 21.0005 12.5289V21H3.00049V12.5287Z\" fill=\"currentColor\"/><Path d=\"M3.27987 3L2.06269 6.65153C1.3496 8.7908 2.9419 11 5.19689 11C6.08484 11 6.89097 10.6497 7.48462 10.0797C8.07005 10.6493 8.86938 11 9.75063 11C10.6239 11 11.4167 10.6556 12.0006 10.0952C12.5846 10.6556 13.3774 11 14.2506 11C15.1319 11 15.9312 10.6493 16.5166 10.0797C17.1103 10.6497 17.9164 11 18.8044 11C21.0594 11 22.6517 8.7908 21.9386 6.65153L20.7214 3H3.27987Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconStore3;\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,gBAAq2B,EAAr2B,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,EAAE,yWAAyW,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gXAAgX,KAAK,eAAc,CAAI,EAC72B,EAEc",
  "debugId": "9E06E6B754CA627E64756E2164756E21",
  "names": []
}