{
  "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=\"M3.75 3C3.33579 3 3 3.33579 3 3.75V5.8125C3 14.2003 9.79968 21 18.1875 21H20.25C20.6642 21 21 20.6642 21 20.25V15.0938C21 14.8097 20.8395 14.55 20.5854 14.4229L16.4604 12.3604C16.1717 12.2161 15.8229 12.2726 15.5947 12.5009L14.4051 13.6905C12.4366 12.8075 11.1925 11.5634 10.3095 9.59491L11.4991 8.40533C11.7274 8.17706 11.7839 7.82833 11.6396 7.53959L9.57707 3.41459C9.45003 3.1605 9.19033 3 8.90625 3H3.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,gBAA4f,EAA5f,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,OAAD,CAAM,EAAE,2ZAA2Z,KAAK,eAAc,CAAI,GAGtf",
  "debugId": "CD830D69F32DA9C264756E2164756E21",
  "names": []
}