{
  "version": 3,
  "sources": ["src/IconEmailPlus/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 IconEmailPlus: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1.5-IconEmailPlus\"><Path d=\"M2.02974 6.57533C2.05573 6.25729 2.107 5.95552 2.22384 5.66779L10.5236 10.9495C11.4244 11.5227 12.5756 11.5227 13.4764 10.9495L21.7762 5.66779C21.893 5.95552 21.9443 6.25729 21.9703 6.57533C22 6.93956 22 7.3854 22 7.91955V14.75H21.25V13.75C21.25 12.5074 20.2426 11.5 19 11.5C17.7574 11.5 16.75 12.5074 16.75 13.75V14.75H15.75C14.5074 14.75 13.5 15.7574 13.5 17C13.5 18.2426 14.5074 19.25 15.75 19.25H16.75V20H5.91936C5.3853 20 4.93952 20 4.57533 19.9703C4.19545 19.9392 3.83879 19.8721 3.50153 19.7003C2.98408 19.4366 2.56339 19.0159 2.29973 18.4985C2.12789 18.1612 2.06078 17.8046 2.02974 17.4247C1.99998 17.0604 1.99999 16.6146 2 16.0805V7.91956C1.99999 7.38542 1.99998 6.93956 2.02974 6.57533Z\" fill=\"currentColor\"/><Path d=\"M20.4985 4.29973C20.612 4.3576 20.721 4.42303 20.8246 4.49539L12.6711 9.68396C12.2616 9.94452 11.7384 9.94452 11.3289 9.68396L3.17544 4.49539C3.27905 4.42303 3.38796 4.3576 3.50153 4.29973C3.83879 4.12789 4.19545 4.06078 4.57533 4.02974C4.93956 3.99998 5.3854 3.99999 5.91954 4H18.0804C18.6146 3.99999 19.0604 3.99998 19.4247 4.02974C19.8046 4.06078 20.1612 4.12789 20.4985 4.29973Z\" fill=\"currentColor\"/><Path d=\"M19 13C19.4142 13 19.75 13.3358 19.75 13.75V16.25H22.25C22.6642 16.25 23 16.5858 23 17C23 17.4142 22.6642 17.75 22.25 17.75H19.75V20.25C19.75 20.6642 19.4142 21 19 21C18.5858 21 18.25 20.6642 18.25 20.25V17.75H15.75C15.3358 17.75 15 17.4142 15 17C15 16.5858 15.3358 16.25 15.75 16.25H18.25V13.75C18.25 13.3358 18.5858 13 19 13Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEmailPlus;\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,EAAkE,EAAM,KAAK,CAAC,IAClF,gBAAmjD,EAAnjD,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,2rBAA2rB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iYAAiY,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0UAA0U,KAAK,eAAc,CAAI,CAC3jD,EAEc",
  "debugId": "BCC6E4CF1C337DC864756E2164756E21",
  "names": []
}