{
  "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.7082C4.7499 16.1677 7.14218 18.8029 9.66374 21.1735C10.9831 22.4138 13.0138 22.4094 14.3122 21.1471C16.252 19.2613 18.1915 17.1282 19.907 15.3781L16.0298 11.1921C15.7406 10.8798 15.2498 10.8705 14.949 11.1716L14.3682 11.7529C12.6982 13.4229 9.99028 13.4229 8.32031 11.7529L7.56497 11.008C6.67598 10.1312 6.67096 8.69818 7.55379 7.81518L10.9238 4.44454ZM21.248 4.76485C18.8946 2.41171 15.0789 2.41172 12.7255 4.76485L8.61013 8.87938C8.31466 9.17479 8.31756 9.65471 8.61658 9.94652L9.38086 10.6924C10.465 11.7766 12.2234 11.7766 13.3076 10.6924L13.8587 10.1413C14.7568 9.24319 16.2197 9.26594 17.0894 10.1915L20.95 14.3C21.2511 13.9836 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,gBAA+4B,EAA/4B,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,uzBAAuzB,KAAK,eAAc,CAAI,GAGz4B",
  "debugId": "DAA522D03A5F1D1664756E2164756E21",
  "names": []
}