{
  "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=\"M5.8125 3C4.2592 3 3 4.2592 3 5.8125C3 14.2003 9.79968 21 18.1875 21C19.7408 21 21 19.7408 21 18.1875V16.9479C21 15.5275 20.1975 14.229 18.9271 13.5938L17.4822 12.8713C16.5833 12.4219 15.4975 12.598 14.7868 13.3087C14.5386 13.557 14.2051 13.6023 13.9638 13.4801C12.3894 12.6832 11.3168 11.6106 10.5199 10.0362C10.3977 9.7949 10.443 9.46142 10.6913 9.21316C11.402 8.50246 11.5781 7.41673 11.1287 6.51776L10.4062 5.07295C9.77103 3.80251 8.47254 3 7.05215 3H5.8125Z\" 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,gBAAkjB,EAAljB,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,OAAD,CAAM,EAAE,idAAid,KAAK,eAAc,CAAI,GAG5iB",
  "debugId": "7BA91DA5CC93009264756E2164756E21",
  "names": []
}