{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEmail2Block/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\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  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\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      {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 fill=\"none\" style={{ color: \"#fff\" }}>\n              {children}\n            </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\";\n\nexport const IconEmail2Block: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} ariaLabel=\"email-2-block\" maskId=\"round-filled-radius-0-stroke-1.5-IconEmail2Block\"><path d=\"M21.25 4C21.6642 4.00004 22 4.33581 22 4.75V8C22 8.28323 21.8399 8.54248 21.5869 8.66992L12.3369 13.3301C12.1247 13.4369 11.8743 13.437 11.6621 13.3301L3.5 9.21777V18.5H11.25C11.6642 18.5 12 18.8358 12 19.25C12 19.6642 11.6642 20 11.25 20H2.75C2.33579 20 2 19.6642 2 19.25V4.75C2 4.33579 2.33579 4 2.75 4H21.25Z\" fill=\"currentColor\"/><path d=\"M15.9216 14.1721C17.4837 12.61 20.0157 12.61 21.5778 14.1721C23.1399 15.7342 23.1399 18.2662 21.5778 19.8283C20.0157 21.3904 17.4837 21.3904 15.9216 19.8283C14.3595 18.2662 14.3595 15.7342 15.9216 14.1721ZM17.5925 19.217C18.535 19.7094 19.7255 19.5595 20.5173 18.7678C21.309 17.976 21.4589 16.7855 20.9665 15.843L17.5925 19.217ZM19.9059 14.7824C18.9636 14.2908 17.7735 14.4412 16.9821 15.2326C16.1907 16.024 16.0403 17.214 16.5319 18.1564L19.9059 14.7824Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconEmail2Block;\n"
  ],
  "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,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,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAAg7B,EAAh7B,IAAqB,EAAO,UAAU,gBAAgB,OAAO,oDAAmD,gBAAC,OAAD,CAAM,EAAE,0TAA0T,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0cAA0c,KAAK,eAAc,CAAI,EACx7B,EAEc",
  "debugId": "D1DBC48F8ECCEA7764756E2164756E21",
  "names": []
}