{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCallCancel/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 IconCallCancel: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"call-cancel, phone\"><path d=\"M10.8238 12.1156C10.2398 11.4558 9.72586 10.7326 9.29367 9.95774L10.7694 8.54104C10.9714 8.34717 11.0485 8.05695 10.9695 7.78838L9.71952 3.53838C9.62565 3.21919 9.33271 3 9 3H3.75188C3.34208 3 3.00815 3.32893 3.00197 3.73869C3.00066 3.82564 3 3.91275 3 4C3 7.10297 3.83203 10.0139 5.28566 12.5194C5.90369 13.5846 6.63402 14.5765 7.46049 15.4789L3.21967 19.7197C2.92678 20.0126 2.92678 20.4874 3.21967 20.7803C3.51256 21.0732 3.98744 21.0732 4.28033 20.7803L20.7803 4.28033C21.0732 3.98744 21.0732 3.51256 20.7803 3.21967C20.4874 2.92678 20.0126 2.92678 19.7197 3.21967L10.8238 12.1156Z\" fill=\"currentColor\"/><path d=\"M11.4806 18.7143C10.8519 18.3496 10.2487 17.9456 9.6744 17.5059L13.0744 14.1059C13.3869 14.3205 13.7098 14.5209 14.0423 14.7063L15.459 13.2306C15.6528 13.0286 15.943 12.9515 16.2116 13.0305L20.4616 14.2805C20.7808 14.3744 21 14.6673 21 15V20.25C21 20.6642 20.6642 21 20.25 21H20C16.897 21 13.9861 20.168 11.4806 18.7143Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCallCancel;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAsgC,EAAtgC,IAAqB,EAAO,UAAU,sBAAqB,gBAAC,OAAD,CAAM,EAAE,4kBAA4kB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mUAAmU,KAAK,eAAc,CAAI,GAGhgC",
  "debugId": "350495EE090BF56164756E2164756E21",
  "names": []
}