{
  "version": 3,
  "sources": ["src/IconStore2/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconStore2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1.5-IconStore2\"><Path d=\"M15.5113 10C15.6739 10 15.8268 10.0739 15.9381 10.1924C16.6955 10.9994 17.7718 11.5 18.9576 11.5C19.7047 11.4999 20.4008 11.3032 21.0006 10.9619V18.25C21.0006 19.7687 19.7692 20.9998 18.2506 21H14.7506C14.3364 21 14.0006 20.6642 14.0006 20.25V17.5C14.0006 16.3956 13.105 15.5002 12.0006 15.5C10.896 15.5 10.0006 16.3954 10.0006 17.5V20.25C10.0006 20.6641 9.66461 20.9998 9.25058 21H5.75058C4.23179 21 3.00058 19.7688 3.00058 18.25V10.9629C3.60021 11.3039 4.29574 11.5 5.04257 11.5C6.22833 11.5 7.30467 10.9994 8.0621 10.1924C8.17341 10.074 8.32633 10 8.48886 10C8.6481 10.0001 8.79824 10.0709 8.90878 10.1855C9.68719 10.9934 10.7807 11.4999 11.9996 11.5C13.2187 11.5 14.3129 10.9935 15.0914 10.1855C15.202 10.0709 15.3521 10.0001 15.5113 10Z\" fill=\"currentColor\"/><Path d=\"M7.67538 7.54883C7.57674 8.92983 6.42708 10 5.04257 10C3.43699 9.99974 2.2035 8.57775 2.43026 6.98828L2.66268 5.36133C2.85623 4.00654 4.0168 3 5.38534 3H8.00058L7.67538 7.54883Z\" fill=\"currentColor\"/><Path d=\"M14.7867 7.00781C14.9021 8.62459 13.6214 9.9998 12.0006 10C10.3795 10 9.09903 8.62473 9.21444 7.00781L9.50058 3H14.5006L14.7867 7.00781Z\" fill=\"currentColor\"/><Path d=\"M18.6148 3C19.9834 3 21.1439 4.00654 21.3375 5.36133L21.5699 6.98828C21.7967 8.57785 20.5633 9.9999 18.9576 10C17.5731 10 16.4234 8.92983 16.3248 7.54883L16.0006 3H18.6148Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconStore2;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAA+D,EAAM,KAAK,CAAC,IAC/E,gBAA65C,EAA75C,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,wuBAAwuB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oLAAoL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2IAA2I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+KAA+K,KAAK,eAAc,CAAI,CACr6C,EAEc",
  "debugId": "E8ECB05B2B36944764756E2164756E21",
  "names": []
}