{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPackageBlock/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 IconPackageBlock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconPackageBlock\"><Path d=\"M8 3H3V21H12.8096C11.6888 19.8321 11 18.2465 11 16.5C11 12.9101 13.9101 10 17.5 10C18.7886 10 19.9897 10.375 21 11.0218V3H16V9H8V3Z\" fill=\"currentColor\"/><Path d=\"M14 3H10V7H14V3Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.682 13.318C18.9246 11.5607 16.0754 11.5607 14.318 13.318C12.5607 15.0754 12.5607 17.9246 14.318 19.682C16.0754 21.4393 18.9246 21.4393 20.682 19.682C22.4393 17.9246 22.4393 15.0754 20.682 13.318ZM19.8278 17.4136L16.5864 14.1722C17.4836 13.8207 18.5429 14.0073 19.2678 14.7322C19.9927 15.4571 20.1793 16.5164 19.8278 17.4136ZM15.1722 15.5864L18.4136 18.8278C17.5164 19.1793 16.4571 18.9927 15.7322 18.2678C15.0073 17.5429 14.8207 16.4836 15.1722 15.5864Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPackageBlock;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAA0zB,EAA1zB,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,sIAAsI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4cAA4c,KAAK,eAAc,CAAI,EACl0B,EAEc",
  "debugId": "7F56998C15106E3264756E2164756E21",
  "names": []
}