{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPackageSecurity/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 IconPackageSecurity: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconPackageSecurity\"><Path d=\"M8 3H3V21H13.0012C12.3918 20.1223 12 19.0308 12 17.7171V13.2517L13.5212 12.3898C14.8976 11.61 16.3849 11.1175 18 11.1175C19.0528 11.1175 20.0512 11.3267 21 11.6884V3H16V9H8V3Z\" fill=\"currentColor\"/><Path d=\"M14 3H10V7H14V3Z\" fill=\"currentColor\"/><Path d=\"M21.4929 14.1299C20.3418 13.4777 19.1922 13.1175 18 13.1175C16.8078 13.1175 15.6582 13.4777 14.5071 14.1299L14 14.4172V17.7171C14 18.9865 14.5292 19.9044 15.2804 20.5711C15.9791 21.1912 16.8731 21.5935 17.5939 21.9138L18 22.0943L18.4061 21.9138C19.1269 21.5935 20.0209 21.1912 20.7196 20.5711C21.4708 19.9044 22 18.9865 22 17.7171V14.4172L21.4929 14.1299Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPackageSecurity;\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,EAAwE,EAAM,KAAK,CAAC,IAAU,CACzG,OAAO,gBAA6tB,EAA7tB,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,EAAE,kLAAkL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sWAAsW,KAAK,eAAc,CAAI,EACruB,EAEc",
  "debugId": "84FB3CBA91DC731C64756E2164756E21",
  "names": []
}