{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCall/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 IconCall: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"call, phone\"><path d=\"M6.70522 3C4.70137 3 2.87023 4.65 3.23392 6.81677C3.56969 8.81719 4.26074 10.7558 5.2839 12.5194C6.77261 15.0853 8.91294 17.2256 11.4789 18.7143C13.2478 19.7406 15.1599 20.4069 17.1367 20.7419C19.3164 21.1113 20.9982 19.2738 20.9982 17.247C20.9982 15.5841 19.9029 14.1167 18.3064 13.6471L17.3421 13.3635C16.3779 13.0799 15.3359 13.3569 14.6399 14.082C14.2635 14.474 13.7268 14.5345 13.3555 14.2944C11.8951 13.35 10.6483 12.1031 9.70384 10.6427C9.46374 10.2715 9.52424 9.73471 9.91627 9.35836C10.6413 8.66231 10.9184 7.62038 10.6348 6.65615L10.2814 5.45485C9.85337 3.99944 8.51765 3 7.0006 3H6.70522Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCall;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAA6qB,EAA7qB,IAAqB,EAAO,UAAU,eAAc,gBAAC,OAAD,CAAM,EAAE,0lBAA0lB,KAAK,eAAc,CAAI,GAGvqB",
  "debugId": "8BD3749DF077A12564756E2164756E21",
  "names": []
}