{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEmailSettings/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\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      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconEmailSettings: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"email-settings, envelope, gear\"><path d=\"M2.51512 5.85315C2.47783 5.91675 2.44234 5.98157 2.40873 6.04754C2.18239 6.49176 2.08803 6.9719 2.04336 7.51853C1.99999 8.04944 1.99999 8.70504 2 9.51787V14.4821C1.99999 15.2949 1.99999 15.9506 2.04336 16.4815C2.08803 17.0281 2.18239 17.5082 2.40873 17.9525C2.76825 18.6581 3.34193 19.2317 4.04754 19.5913C4.49176 19.8176 4.9719 19.912 5.51853 19.9566C6.04944 20 6.70505 20 7.51788 20H14.3895C13.8269 19.1372 13.5 18.1068 13.5 17C13.5 13.9624 15.9624 11.5 19 11.5C20.1068 11.5 21.1372 11.8269 22 12.3895V9.51788C22 8.70505 22 8.04944 21.9566 7.51853C21.912 6.9719 21.8176 6.49176 21.5913 6.04754C21.5577 5.98157 21.5222 5.91675 21.4849 5.85315L14.0133 10.6078C12.7849 11.3895 11.2151 11.3895 9.98672 10.6078L2.51512 5.85315Z\" fill=\"currentColor\"/><path d=\"M20.4651 4.72414C20.3037 4.60599 20.1324 4.5004 19.9525 4.40873C19.5082 4.18239 19.0281 4.08803 18.4815 4.04336C17.9506 3.99999 17.295 3.99999 16.4821 4H7.5179C6.70508 3.99999 6.04943 3.99999 5.51853 4.04336C4.9719 4.08803 4.49176 4.18239 4.04754 4.40873C3.86763 4.5004 3.69629 4.60599 3.5349 4.72414L10.792 9.34231C11.5291 9.81133 12.4709 9.81132 13.208 9.34231L20.4651 4.72414Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.7498 13.75C19.7498 13.3358 19.4141 13 18.9998 13C18.5856 13 18.2498 13.3358 18.2498 13.75V14.1807C17.7439 14.315 17.2921 14.5819 16.9339 14.9413L16.5602 14.7255C16.2015 14.5184 15.7428 14.6413 15.5357 15C15.3286 15.3587 15.4515 15.8174 15.8102 16.0245L16.1834 16.24C16.118 16.4826 16.0832 16.7375 16.0832 17C16.0832 17.2625 16.118 17.5174 16.1834 17.76L15.8102 17.9755C15.4515 18.1826 15.3286 18.6413 15.5357 19C15.7428 19.3587 16.2015 19.4816 16.5602 19.2745L16.934 19.0588C17.2921 19.4181 17.7439 19.685 18.2498 19.8193L18.2498 20.25C18.2498 20.6642 18.5856 21 18.9998 21C19.414 21 19.7498 20.6642 19.7498 20.25L19.7498 19.8193C20.2558 19.685 20.7075 19.4181 21.0657 19.0588L21.4393 19.2745C21.7981 19.4816 22.2568 19.3587 22.4639 19C22.671 18.6413 22.5481 18.1826 22.1894 17.9755L21.8163 17.7601C21.8817 17.5174 21.9165 17.2625 21.9165 17C21.9165 16.7375 21.8817 16.4826 21.8163 16.2399L22.1894 16.0245C22.5481 15.8174 22.671 15.3587 22.4639 15C22.2568 14.6413 21.7981 14.5184 21.4394 14.7255L21.0657 14.9412C20.7075 14.5819 20.2558 14.315 19.7498 14.1807V13.75ZM17.7723 16.2921C18.0184 15.8668 18.4765 15.5833 18.9998 15.5833C19.5232 15.5833 19.9813 15.8668 20.2274 16.2921C20.3475 16.4997 20.4165 16.7407 20.4165 17C20.4165 17.2593 20.3475 17.5003 20.2274 17.7079C19.9813 18.1333 19.5232 18.4167 18.9998 18.4167C18.4765 18.4167 18.0184 18.1332 17.7723 17.7079C17.6522 17.5003 17.5832 17.2593 17.5832 17C17.5832 16.7407 17.6522 16.4997 17.7723 16.2921Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEmailSettings;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAAktF,EAAltF,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,utBAAutB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8XAA8X,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,u7CAAu7C,KAAK,eAAc,CAAI,GAG5sF",
  "debugId": "B4392A1E4B7B31AB64756E2164756E21",
  "names": []
}