{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTelephone/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 IconTelephone: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"telephone, phone, contact\"><path d=\"M4.75 3C3.7835 3 3 3.7835 3 4.75V5.8125C3 14.2003 9.79968 21 18.1875 21H19.25C20.2165 21 21 20.2165 21 19.25V15.7118C21 15.0489 20.6255 14.443 20.0326 14.1465L17.1051 12.6828C16.4313 12.3459 15.6176 12.4779 15.085 13.0106L14.5141 13.5815C14.4369 13.6587 14.3438 13.6629 14.2872 13.6367C12.4248 12.7743 11.2257 11.5752 10.3633 9.71278C10.3371 9.65617 10.3413 9.56314 10.4185 9.48594L10.9894 8.91498C11.5221 8.38235 11.6541 7.56865 11.3172 6.89492L9.85346 3.96738C9.55703 3.3745 8.95107 3 8.28822 3H4.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTelephone;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA0lB,EAA1lB,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,OAAD,CAAM,EAAE,yfAAyf,KAAK,eAAc,CAAI,GAGplB",
  "debugId": "0234607FDF60DE2C64756E2164756E21",
  "names": []
}