{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEmailNotification/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 IconEmailNotification: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconEmailNotification\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20 2C17.7909 2 16 3.79086 16 6C16 8.20914 17.7909 10 20 10C22.2091 10 24 8.20914 24 6C24 3.79086 22.2091 2 20 2Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18 6C18 4.89543 18.8954 4 20 4C21.1046 4 22 4.89543 22 6C22 7.10457 21.1046 8 20 8C18.8954 8 18 7.10457 18 6Z\" fill=\"currentColor\"/><Path d=\"M20 12C19.3875 12 18.7964 11.9082 18.2397 11.7376C16.3224 12.5504 14.2137 13 12 13C8.21621 13 4.7392 11.6865 2 9.49072V20H22V11.6586C21.3744 11.8797 20.7013 12 20 12Z\" fill=\"currentColor\"/><Path d=\"M14 6C14 5.29873 14.1203 4.62556 14.3414 4H2V6.79797C4.54103 9.39107 8.08262 11 12 11C13.3741 11 14.702 10.802 15.9567 10.4331C14.7544 9.33581 14 7.756 14 6Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEmailNotification;\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,EAA0E,EAAM,KAAK,CAAC,IAAU,CAC3G,OAAO,gBAA20B,EAA30B,IAAqB,EAAO,OAAO,yDAAwD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oHAAoH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iHAAiH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yKAAyK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gKAAgK,KAAK,eAAc,CAAI,EACn1B,EAEc",
  "debugId": "FB598E5AF8593E7C64756E2164756E21",
  "names": []
}