{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconStore1/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 IconStore1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconStore1\"><Path d=\"M14.2498 3H9.7498L9.44573 7.25699C9.33986 8.73922 10.5138 10 11.9998 10C13.4858 10 14.6597 8.73922 14.5539 7.25699L14.2498 3Z\" fill=\"currentColor\"/><Path d=\"M20.9998 3H16.2498L16.5827 7.66044C16.6768 8.97866 17.7737 10 19.0953 10C20.6283 10 21.8058 8.64227 21.589 7.12472L20.9998 3Z\" fill=\"currentColor\"/><Path d=\"M2.9998 3H7.7498L7.41691 7.66044C7.32275 8.97866 6.22586 10 4.90428 10C3.37132 10 2.19376 8.64227 2.41056 7.12472L2.9998 3Z\" fill=\"currentColor\"/><Path d=\"M2.9998 11.5813V21H20.9998V11.5812C20.4235 11.8494 19.7791 12 19.0952 12C17.6686 12 16.3879 11.3366 15.5573 10.2929C14.7242 11.3305 13.4447 12 11.9996 12C10.5545 12 9.27515 11.3306 8.44201 10.2931C7.61139 11.3366 6.33077 12 4.90421 12C4.22044 12 3.57609 11.8494 2.9998 11.5813Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconStore1;\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,gBAA41B,EAA51B,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,EAAE,gIAAgI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gIAAgI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8HAA8H,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wRAAwR,KAAK,eAAc,CAAI,EACp2B,EAEc",
  "debugId": "F4DD7ADE99E2156364756E2164756E21",
  "names": []
}