{
  "version": 3,
  "sources": ["src/IconEmailNotification/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "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=\"round-filled-radius-2-stroke-1-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=\"M17 6C17 4.34315 18.3431 3 20 3C21.6569 3 23 4.34315 23 6C23 7.65685 21.6569 9 20 9C18.3431 9 17 7.65685 17 6Z\" fill=\"currentColor\"/><Path d=\"M19.9994 11.0385C19.3666 11.0385 18.7611 10.9218 18.2032 10.7089C16.3037 11.5393 14.2057 12 12 12C8.189 12 4.69924 10.6246 2 8.34314V16.3214C2 16.8633 1.99999 17.3004 2.02891 17.6543C2.05868 18.0187 2.12159 18.3388 2.27248 18.635C2.51217 19.1054 2.89462 19.4878 3.36502 19.7275C3.66117 19.8784 3.98126 19.9413 4.34569 19.9711C4.69963 20 5.1367 20 5.67858 20H18.3214C18.8633 20 19.3004 20 19.6543 19.9711C20.0187 19.9413 20.3388 19.8784 20.635 19.7275C21.1054 19.4878 21.4878 19.1054 21.7275 18.635C21.8784 18.3388 21.9413 18.0187 21.9711 17.6543C22 17.3004 22 16.8633 22 16.3214V10.6256C21.3867 10.8912 20.7103 11.0385 19.9994 11.0385Z\" fill=\"currentColor\"/><Path d=\"M14.9602 6.00001C14.9602 5.28938 15.1073 4.61311 15.3727 4H5.67784C5.13596 4 4.69887 3.99999 4.34493 4.02891C3.98051 4.05868 3.66041 4.12159 3.36427 4.27248C2.89386 4.51217 2.51141 4.89462 2.27173 5.36502C2.12083 5.66117 2.05793 5.98126 2.02815 6.34569C2.01238 6.53875 2.00521 6.75656 2.00195 7.00262C4.60329 9.47955 8.12371 11 11.9992 11C13.779 11 15.4839 10.6793 17.0592 10.0927C15.788 9.17801 14.9602 7.68568 14.9602 6.00001Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEmailNotification;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAA0E,EAAM,KAAK,CAAC,IAC1F,gBAA8iD,EAA9iD,IAAqB,EAAO,OAAO,wDAAuD,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,8nBAA8nB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+aAA+a,KAAK,eAAc,CAAI,CACtjD,EAEc",
  "debugId": "2B69822E432F1C5064756E2164756E21",
  "names": []
}