{"version":3,"sources":["../src/IconCallCancel/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCallCancel: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"call-cancel, phone\">\n      <path\n        fillRule=\"evenodd\"\n        clipRule=\"evenodd\"\n        d=\"M4.00015 21.4144L21.4144 4.00015L20.0002 2.58594L10.837 11.7491C10.3468 11.1701 9.91044 10.544 9.5358 9.87866L11.1295 8.285L9.54403 3.00024H3V4.00024C3 8.33484 4.62228 12.2905 7.29279 15.2933L2.58594 20.0002L4.00015 21.4144ZM8.70977 13.8763L9.41857 13.1675C8.62432 12.2515 7.94706 11.2312 7.40992 10.1299L7.09725 9.48878L8.87054 7.71549L8.05597 5.00024H5.0328C5.25592 8.39002 6.60509 11.4722 8.70977 13.8763Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M19 18.9674C16.3235 18.7913 13.8387 17.9131 11.7281 16.5152L10.2884 17.955C13.0415 19.8746 16.3893 21.0002 20 21.0002H21V14.4562L15.7152 12.8708L14.1216 14.4644C14.0487 14.4234 13.9762 14.3816 13.9043 14.3391L12.4509 15.7925C12.9067 16.0848 13.3805 16.3514 13.8704 16.5903L14.5115 16.903L16.2848 15.1297L19 15.9443V18.9674Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconCallCancel;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2ZACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sUACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCallCancel","props","React","CentralIconBase","IconCallCancel_default"]}