{
  "version": 3,
  "sources": ["src/IconStores/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 IconStores: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1.5-IconStores\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M9.80058 4.72868C10.2182 3.68462 11.2294 3 12.3539 3H19.6458C20.7703 3 21.7815 3.68462 22.1991 4.72868L22.6341 5.81619C23.0658 6.89542 22.7473 8.03261 21.9999 8.75309V12.25C21.9999 13.7688 20.7687 15 19.2499 15H17.7499C17.3357 15 16.9999 14.6642 16.9999 14.25V9.32152C16.6899 9.43671 16.3533 9.5 15.9999 9.5C15.5857 9.5 15.2499 9.16421 15.2499 8.75C15.2499 8.33579 15.5857 8 15.9999 8C16.8406 8 17.4812 7.24913 17.3513 6.42067L17.0312 4.5H14.9685L14.6563 6.3733C14.5882 6.78188 14.2018 7.05789 13.7932 6.9898C13.3846 6.9217 13.1086 6.53528 13.1767 6.1267L13.4478 4.5H12.3539C11.8428 4.5 11.3831 4.81119 11.1933 5.28576L10.7583 6.37328C10.6045 6.75787 10.168 6.94493 9.78339 6.79109C9.39881 6.63726 9.21174 6.20078 9.36558 5.81619L9.80058 4.72868ZM18.8319 6.18015C18.8309 6.17367 18.8298 6.1672 18.8287 6.16072L18.5519 4.5H19.6458C20.1569 4.5 20.6165 4.81119 20.8064 5.28576L21.2414 6.37328C21.553 7.15244 20.9792 8 20.14 8C19.5602 8 19.0653 7.5808 18.97 7.00885L18.8319 6.18015ZM1.83545 11.1417C2.23207 10.1502 3.19242 9.5 4.26037 9.5H11.7395C12.8074 9.5 13.7678 10.1502 14.1644 11.1417L14.6342 12.3162C15.0659 13.3955 14.7473 14.5327 13.9999 15.2532V18.25C13.9999 19.7688 12.7687 21 11.2499 21H4.74992C3.23114 21 1.99992 19.7688 1.99992 18.25V15.2532C1.25251 14.5327 0.933961 13.3955 1.36567 12.3162L1.83545 11.1417ZM6.65064 12.9078C6.51201 13.7413 7.15486 14.5 7.99992 14.5C8.84515 14.5 9.48808 13.741 9.34913 12.9073L9.03125 11H6.9686L6.65064 12.9078ZM5.44791 11L5.02977 13.5088C4.93445 14.0808 4.43958 14.5 3.85973 14.5C3.02055 14.5 2.44672 13.6524 2.75839 12.8733L3.22816 11.6988C3.39699 11.2768 3.80578 11 4.26037 11H5.44791ZM10.5519 11L10.8287 12.6607L10.9701 13.5088C11.0654 14.0808 11.5603 14.5 12.1401 14.5C12.9793 14.5 13.5531 13.6524 13.2415 12.8733L12.7717 11.6988C12.6029 11.2768 12.1941 11 11.7395 11H10.5519Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconStores;\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,gBAAy7D,EAAz7D,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,myDAAmyD,KAAK,eAAc,CAAI,CACj8D,EAEc",
  "debugId": "6D5302746EEC347364756E2164756E21",
  "names": []
}