{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEmailSettings/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 IconEmailSettings: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconEmailSettings\"><Path d=\"M13.5 19.5H2.5V4.5H21.5V10.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M21.5 5.22726L12 11L2.5 5.22726\" stroke=\"currentColor\"/><Path d=\"M22.531 15.25L21.8333 15.6528M16.4688 18.75L17.1666 18.3471M22.5309 18.75L21.8333 18.3472M16.4688 15.25L17.1666 15.6529M19.4999 20.5L19.4999 19.625M19.4999 13.5V14.375M21.8333 17C21.8333 16.5749 21.7196 16.1764 21.521 15.8331C21.1175 15.1358 20.3635 14.6667 19.4999 14.6667C18.6363 14.6667 17.8823 15.1358 17.4788 15.8332C17.2802 16.1764 17.1666 16.5749 17.1666 17C17.1666 17.4251 17.2803 17.8236 17.4789 18.1669C17.8823 18.8642 18.6363 19.3333 19.4999 19.3333C20.3635 19.3333 21.1175 18.8642 21.521 18.1669C21.7196 17.8236 21.8333 17.4251 21.8333 17Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/></CentralIconBase>;\n});\n\nexport default IconEmailSettings;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAAi1B,EAAj1B,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,EAAE,+BAA+B,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,kCAAkC,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0iBAA0iB,OAAO,eAAe,cAAc,SAAQ,CAAI,EACz1B,EAEc",
  "debugId": "B4C7279771ADAC8264756E2164756E21",
  "names": []
}