{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShieldSafeSearch/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 IconShieldSafeSearch: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconShieldSafeSearch\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 4.9375V12.5918C20.9998 17.5622 16.9705 21.5918 12 21.5918C7.02953 21.5918 3.00015 17.5622 3 12.5918V4.9375L12 1L21 4.9375ZM16.3711 9.48438C16.1153 9.05835 15.5629 8.9202 15.1367 9.17578L13.7656 9.99805C13.2323 10.3179 12.621 10.4873 11.999 10.4873C11.3772 10.4871 10.7666 10.318 10.2334 9.99805L8.8623 9.17578C8.43613 8.92033 7.88359 9.05827 7.62793 9.48438C7.37251 9.91044 7.51067 10.463 7.93652 10.7188L9.30762 11.542C9.49849 11.6565 9.6969 11.7569 9.89941 11.8457V16.1875C9.89957 16.6843 10.303 17.0877 10.7998 17.0879C11.2966 17.0877 11.7 16.6843 11.7002 16.1875V14.6348C11.7939 14.6678 11.8951 14.6874 12 14.6875C12.1048 14.6874 12.2053 14.6677 12.2988 14.6348V16.1875C12.299 16.6842 12.7026 17.0875 13.1992 17.0879C13.6962 17.0879 14.0995 16.6844 14.0996 16.1875V11.8457C14.3022 11.757 14.5005 11.6565 14.6914 11.542L16.0625 10.7188C16.4886 10.463 16.6267 9.91053 16.3711 9.48438ZM12 5.9873C11.0062 5.98754 10.1994 6.79328 10.1992 7.78711C10.1992 8.78108 11.0061 9.58668 12 9.58691C12.9939 9.58665 13.7998 8.78106 13.7998 7.78711C13.7996 6.79329 12.9938 5.98757 12 5.9873Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconShieldSafeSearch;\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,gBAA4tC,EAA5tC,IAAqB,EAAO,OAAO,wDAAuD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6jCAA6jC,KAAK,eAAc,CAAI,EACpuC,EAEc",
  "debugId": "587E96A405092EE364756E2164756E21",
  "names": []
}