{
  "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 10.4658 2.46869 12.7082C5.30352 15.7646 8.3098 19.0922 11.5226 21.8464C11.7976 22.0821 12.2025 22.0822 12.4763 21.8452C14.9663 19.69 17.3301 17.0428 19.5878 14.7395L16.0306 11.1548C15.7379 10.8599 15.2613 10.859 14.9676 11.1529L14.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.9043 10.0957C14.7848 9.21519 16.2131 9.21731 17.091 10.1004L20.6308 13.6613C20.9319 13.345 21.2339 13.0288 21.5312 12.7082C23.6108 10.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,gBAAk5B,EAAl5B,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,0zBAA0zB,KAAK,eAAc,CAAI,GAG54B",
  "debugId": "2C7FA48F8541A47864756E2164756E21",
  "names": []
}