{
  "version": 3,
  "sources": ["src/IconEmailSettings/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 IconEmailSettings: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconEmailSettings\"><Path d=\"M2.02891 6.34569C2.05774 5.99288 2.11761 5.68161 2.25833 5.39341L10.6578 10.7385C11.4767 11.2597 12.5233 11.2597 13.3422 10.7385L21.7417 5.39341C21.8824 5.68161 21.9423 5.99288 21.9711 6.34569C22 6.69963 22 7.1367 22 7.67859V11.544C21.2389 11.1947 20.3922 11 19.5 11C16.1863 11 13.5 13.6863 13.5 17C13.5 18.0929 13.7922 19.1175 14.3027 20H5.67858C5.1367 20 4.69963 20 4.34569 19.9711C3.98126 19.9413 3.66117 19.8784 3.36502 19.7275C2.89462 19.4878 2.51217 19.1054 2.27248 18.635C2.12159 18.3388 2.05868 18.0187 2.02891 17.6543C1.99999 17.3004 2 16.8633 2 16.3214V7.6786C2 7.1367 1.99999 6.69963 2.02891 6.34569Z\" fill=\"currentColor\"/><Path d=\"M20.635 4.27248C20.8118 4.36258 20.9762 4.47285 21.1252 4.60037L12.8053 9.89487C12.314 10.2076 11.686 10.2076 11.1947 9.89487L2.87476 4.60037C3.02381 4.47285 3.1882 4.36258 3.36502 4.27248C3.66117 4.12159 3.98126 4.05868 4.34569 4.02891C4.69962 3.99999 5.1367 4 5.67858 4H18.3214C18.8633 4 19.3004 3.99999 19.6543 4.02891C20.0187 4.05868 20.3388 4.12159 20.635 4.27248Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.9998 14.2107V13H18.9998V14.2107C18.3357 14.329 17.7519 14.6787 17.3346 15.1726L16.2856 14.567L15.7856 15.433L16.834 16.0383C16.7256 16.3389 16.6665 16.6629 16.6665 17C16.6665 17.3371 16.7256 17.6611 16.834 17.9617L15.7857 18.567L16.2857 19.433L17.3346 18.8274C17.7519 19.3214 18.3357 19.671 18.9998 19.7893L18.9998 21L19.9998 21L19.9998 19.7893C20.6639 19.6711 21.2477 19.3214 21.665 18.8275L22.7138 19.433L23.2138 18.567L22.1656 17.9618C22.2741 17.6612 22.3332 17.3372 22.3332 17C22.3332 16.6629 22.2741 16.3389 22.1656 16.0382L23.2139 15.433L22.7139 14.567L21.6651 15.1725C21.2477 14.6786 20.664 14.329 19.9998 14.2107ZM17.9115 16.0836C18.2293 15.5344 18.8219 15.1667 19.4998 15.1667C20.1777 15.1667 20.7703 15.5343 21.0881 16.0835C21.2439 16.3527 21.3332 16.6652 21.3332 17C21.3332 17.3348 21.2439 17.6473 21.0881 17.9165C20.7703 18.4657 20.1777 18.8333 19.4998 18.8333C18.8219 18.8333 18.2293 18.4657 17.9115 17.9165C17.7558 17.6473 17.6665 17.3348 17.6665 17C17.6665 16.6652 17.7558 16.3527 17.9115 16.0836Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEmailSettings;\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,EAAsE,EAAM,KAAK,CAAC,IACtF,gBAA0qE,EAA1qE,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,smBAAsmB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oXAAoX,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2/BAA2/B,KAAK,eAAc,CAAI,CAClrE,EAEc",
  "debugId": "48E699EE5E1FDC3E64756E2164756E21",
  "names": []
}