{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShoppingBagLike1/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 IconShoppingBagLike1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconShoppingBagLike1\"><Path d=\"M19.1973 14.25C19.9171 14.25 20.6357 14.5397 21.1689 15.1084C21.7067 15.6822 22.0039 16.4816 22.0039 17.418C22.0037 18.9583 20.8364 20.1241 19.999 20.7871C19.544 21.1473 19.0937 21.4304 18.7607 21.623C18.4332 21.8126 18.0938 21.9743 17.752 22.1357C17.4103 21.9739 17.0706 21.8125 16.7432 21.623C16.4103 21.4304 15.9607 21.1472 15.5059 20.7871C14.6684 20.1241 13.5012 18.9583 13.501 17.418C13.501 16.4815 13.7981 15.6822 14.3359 15.1084C14.8691 14.5397 15.5877 14.25 16.3076 14.25C16.9075 14.2501 17.3981 14.4149 17.752 14.5928C18.1059 14.4148 18.597 14.25 19.1973 14.25Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.5312 12.4434C20.0972 12.3147 19.6474 12.25 19.1973 12.25C18.6589 12.25 18.1741 12.3321 17.752 12.4541C17.33 12.3322 16.8458 12.25 16.3076 12.25C15.0515 12.25 13.7995 12.7562 12.877 13.7402C11.9396 14.7401 11.501 16.0546 11.501 17.418C11.5011 18.9079 12.1223 20.1117 12.8193 21H2.9375L4.0625 3H19.9414L20.5312 12.4434ZM8.00195 8C8.00195 10.2091 9.79281 12 12.002 12C14.2111 12 16.002 10.2091 16.002 8V7H14.002V8C14.002 9.10457 13.1065 10 12.002 10C10.8974 10 10.002 9.10457 10.002 8V7H8.00195V8Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconShoppingBagLike1;\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,EAAyE,EAAM,KAAK,CAAC,IAAU,CAC1G,OAAO,gBAA8uC,EAA9uC,IAAqB,EAAO,OAAO,wDAAuD,gBAAC,EAAD,CAAM,EAAE,6jBAA6jB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qfAAqf,KAAK,eAAc,CAAI,EACtvC,EAEc",
  "debugId": "24F904D296D82A8064756E2164756E21",
  "names": []
}