{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHandshake/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 IconHandshake: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"handshake, heart\"><path d=\"M10.9238 4.44454C8.55616 2.41939 4.9923 2.52465 2.75189 4.76485C0.548847 6.9679 0.389072 11.4658 2.46869 13.7082C5.11421 16.5605 7.90905 19.0558 10.8817 21.5628C11.5277 22.1075 12.4718 22.1077 13.118 21.5631C15.4851 19.5681 18.017 17.3521 20.0878 15.2395L16.0306 11.1543C15.7379 10.8596 15.2614 10.8589 14.9679 11.1527L14.3682 11.7529C12.6982 13.4229 9.99028 13.4229 8.32031 11.7529L7.92339 11.3615C6.83685 10.2898 6.83071 8.5384 7.90972 7.45917L10.9238 4.44454ZM21.248 4.76485C18.8946 2.41171 15.0789 2.41172 12.7255 4.76485L8.9681 8.52149C8.47564 9.01384 8.48048 9.8137 8.97885 10.3001L9.38086 10.6924C10.465 11.7766 12.2234 11.7766 13.3076 10.6924L13.9047 10.0953C14.7851 9.21494 16.213 9.21687 17.091 10.0996L21.1308 14.1613C21.4319 13.845 21.2339 14.0288 21.5312 13.7082C23.6108 11.4658 23.451 6.96789 21.248 4.76485Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHandshake;\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,gBAAi5B,EAAj5B,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,yzBAAyzB,KAAK,eAAc,CAAI,GAG34B",
  "debugId": "BEEC5D2B7D4CF13764756E2164756E21",
  "names": []
}