{
  "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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.01612 5.63213C2.01857 5.6022 2.02145 5.57187 2.02494 5.54121L11.0605 11.2911C11.6337 11.6559 12.3663 11.6559 12.9395 11.2911L21.9751 5.54121C21.9786 5.57187 21.9814 5.6022 21.9839 5.63213C22 5.82981 22 6.06629 22 6.32377V12.3895C21.1372 11.8269 20.1068 11.5 19 11.5C15.9624 11.5 13.5 13.9624 13.5 17C13.5 18.1068 13.8269 19.1372 14.3895 20H4.32377C4.06629 20 3.82981 20 3.63213 19.9839C3.419 19.9665 3.18583 19.9266 2.95552 19.8093C2.62624 19.6415 2.35852 19.3738 2.19074 19.0445C2.0734 18.8142 2.03353 18.581 2.01612 18.3679C1.99997 18.1702 1.99998 17.9338 2 17.6763V6.32379C1.99998 6.06634 1.99997 5.82979 2.01612 5.63213ZM21.0445 4.19074C21.0914 4.21463 21.137 4.24055 21.1813 4.26838L12.1342 10.0256C12.0523 10.0777 11.9477 10.0777 11.8658 10.0256L2.81872 4.26838C2.863 4.24055 2.90863 4.21463 2.95552 4.19074C3.18583 4.0734 3.419 4.03353 3.63213 4.01612C3.82979 3.99997 4.06624 3.99998 4.32369 4H19.6762C19.9337 3.99998 20.1702 3.99997 20.3679 4.01612C20.581 4.03353 20.8142 4.0734 21.0445 4.19074Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19 13C19.4142 13 19.75 13.3358 19.75 13.75V14.1807C20.2559 14.315 20.7077 14.5819 21.0658 14.9412L21.4395 14.7255C21.7983 14.5184 22.2569 14.6413 22.4641 15C22.6712 15.3587 22.5483 15.8174 22.1895 16.0245L21.8164 16.2399C21.8818 16.4826 21.9166 16.7375 21.9166 17C21.9166 17.2625 21.8818 17.5174 21.8164 17.7601L22.1895 17.9755C22.5482 18.1826 22.6711 18.6413 22.464 19C22.2569 19.3587 21.7982 19.4816 21.4395 19.2745L21.0658 19.0588C20.7076 19.4181 20.2559 19.685 19.75 19.8193L19.7499 20.25C19.7499 20.6642 19.4142 21 18.9999 21C18.5857 21 18.2499 20.6642 18.2499 20.25L18.25 19.8193C17.744 19.685 17.2923 19.4181 16.9341 19.0588L16.5604 19.2745C16.2016 19.4816 15.743 19.3587 15.5358 19C15.3287 18.6413 15.4516 18.1826 15.8104 17.9755L16.1835 17.76C16.1181 17.5174 16.0833 17.2625 16.0833 17C16.0833 16.7375 16.1181 16.4826 16.1835 16.24L15.8103 16.0245C15.4516 15.8174 15.3287 15.3587 15.5358 15C15.7429 14.6413 16.2016 14.5184 16.5603 14.7255L16.9341 14.9413C17.2922 14.5819 17.744 14.315 18.25 14.1807V13.75C18.25 13.3358 18.5858 13 19 13ZM19 15.5833C18.4766 15.5833 18.0185 15.8668 17.7724 16.2921C17.6523 16.4997 17.5833 16.7407 17.5833 17C17.5833 17.2593 17.6523 17.5003 17.7724 17.7079C18.0185 18.1332 18.4766 18.4167 19 18.4167C19.5233 18.4167 19.9814 18.1333 20.2275 17.7079C20.3476 17.5003 20.4166 17.2593 20.4166 17C20.4166 16.7407 20.3476 16.4997 20.2275 16.2921C19.9814 15.8668 19.5233 15.5833 19 15.5833Z\" 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,gBAAilF,EAAjlF,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i/BAAi/B,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i5CAAi5C,KAAK,eAAc,CAAI,GAG3kF",
  "debugId": "AA233D10DE9C6EF764756E2164756E21",
  "names": []
}