{
  "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-outlined-radius-0-stroke-1-IconShieldSafeSearch\"><Path d=\"M3.5 5.5L12 2L20.5 5.5V13C20.5 17.6944 16.6944 21.5 12 21.5C7.30558 21.5 3.5 17.6944 3.5 13V5.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M15.2395 9.75537C15.5708 9.55665 16.0004 9.66442 16.1994 9.99561C16.3982 10.3271 16.2915 10.7576 15.9602 10.9565L14.5891 11.7788C14.3679 11.9115 14.1367 12.024 13.8996 12.1206V16.5962C13.8994 16.9827 13.5859 17.2964 13.1994 17.2964C12.813 17.2963 12.4994 16.9826 12.4992 16.5962V14.6841C12.3721 14.814 12.1954 14.896 11.9992 14.896C11.8032 14.8959 11.6273 14.8139 11.5002 14.6841V16.5962C11.5 16.9825 11.1863 17.2961 10.8 17.2964C10.4135 17.2964 10.1 16.9827 10.0998 16.5962V12.1206C9.86274 12.024 9.63151 11.9115 9.41035 11.7788L8.03926 10.9565C7.70777 10.7576 7.60016 10.3271 7.79902 9.99561C7.99792 9.6641 8.42845 9.55647 8.75996 9.75537L10.1311 10.5786C10.6954 10.9171 11.3412 11.0961 11.9992 11.0962C12.6575 11.0962 13.3039 10.9172 13.8684 10.5786L15.2395 9.75537Z\" fill=\"currentColor\"/><Path d=\"M11.9992 6.396C12.9932 6.396 13.7998 7.20182 13.8 8.1958C13.8 9.18991 12.9933 9.99561 11.9992 9.99561C11.0053 9.99542 10.1994 9.1898 10.1994 8.1958C10.1996 7.20194 11.0054 6.39618 11.9992 6.396Z\" 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,gBAA0vC,EAA1vC,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,EAAE,mGAAmG,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,owBAAowB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qMAAqM,KAAK,eAAc,CAAI,EAClwC,EAEc",
  "debugId": "EA056E995623CCFD64756E2164756E21",
  "names": []
}