{
  "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-IconStores\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.9879 3C10.8839 3 9.91057 3.72417 9.59334 4.78163L9.27093 5.85633C9.19158 6.12082 9.34167 6.39956 9.60617 6.47891C9.87066 6.55826 10.1494 6.40817 10.2288 6.14367L10.5512 5.06898C10.7415 4.4345 11.3255 4 11.9879 4H13.4959L13.2537 5.93798C13.2194 6.21199 13.4138 6.46189 13.6878 6.49614C13.9618 6.53039 14.2117 6.33603 14.246 6.06202L14.496 4.06202C14.4986 4.04118 14.4999 4.02048 14.4999 4H17.4998C17.4998 4.01824 17.5008 4.03667 17.5029 4.05522L17.7823 6.56995C17.8656 7.3331 17.2679 7.99997 16.4998 7.99997C16.2237 7.99997 15.9998 8.22383 15.9998 8.49998C15.9998 8.77612 16.2237 8.99998 16.4998 8.99998C16.672 8.99998 16.8393 8.9811 17 8.9454V14.4872C16.9999 14.4915 16.9998 14.4957 16.9998 14.5C16.9998 14.7761 17.2237 15 17.4998 15H19.4998C20.8806 15 21.9998 13.8807 21.9998 12.5V8.33616C22.6709 7.71525 22.9939 6.74027 22.7026 5.76907L22.4063 4.78163C22.0891 3.72417 21.1158 3 20.0118 3H11.9879ZM20.2987 8C21.31 8 22.0354 7.02509 21.7447 6.05641L21.4485 5.06898C21.2582 4.4345 20.6742 4 20.0118 4H18.5029L18.7757 6.4554L18.7759 6.45699L18.7981 6.65697C18.8831 7.42156 19.5294 8 20.2987 8Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.98786 9C2.88384 9 1.91054 9.72417 1.5933 10.7816L1.29363 11.7805C1.00244 12.7511 1.32706 13.7256 1.99984 14.344V18.5C1.99984 19.8807 3.11913 21 4.49984 21H11.4998C12.8806 21 13.9998 19.8807 13.9998 18.5V14.3439C14.6726 13.7255 14.9971 12.7511 14.706 11.7805L14.4063 10.7816C14.0891 9.72417 13.1158 9 12.0117 9H3.98786ZM6.24611 12.0622L6.4523 10H9.54731L9.7546 12.0729C9.85169 13.1059 9.03895 14 7.99983 14C6.95712 14 6.14236 13.0997 6.24611 12.0622ZM12.0117 10H10.5523L10.7486 11.9627L10.7499 11.9761L10.8171 12.6485C10.8939 13.4157 11.5395 14 12.3106 14C13.3159 14 14.037 13.0308 13.7481 12.0679L13.4485 11.069C13.2581 10.4345 12.6742 10 12.0117 10ZM5.18246 12.6485L5.44731 10H3.98786C3.32545 10 2.74147 10.4345 2.55112 11.069L2.25146 12.0679C1.96257 13.0308 2.68366 14 3.68904 14C4.46011 14 5.10574 13.4157 5.18246 12.6485Z\" 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,gBAAgmE,EAAhmE,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0kCAA0kC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+zBAA+zB,KAAK,eAAc,CAAI,CACxmE,EAEc",
  "debugId": "FDB000ED5F263F7A64756E2164756E21",
  "names": []
}