{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGooey/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 IconGooey: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"gooey, morph, liquid-glass\"><path d=\"M7.11391 6C8.79458 6.00008 10.3094 6.72404 11.3781 7.88361C12.1783 8.75191 13.1915 9.50004 14.3578 9.50004C15.2634 9.50004 16.0868 9.01536 16.868 8.54671C17.4469 8.19937 18.121 8.0002 18.8407 8.00017C20.9995 8.00017 22.7497 9.7905 22.75 11.9995C22.75 14.2087 20.9997 15.9998 18.8407 15.9998C18.121 15.9998 17.4469 15.8006 16.8679 15.4533C16.0868 14.9846 15.2634 14.5 14.3579 14.5C13.1915 14.5 12.1784 15.2482 11.3781 16.1165C10.3095 17.2761 8.79468 17.9999 7.11391 18C3.8756 18 1.25015 15.3142 1.25 12.0005C1.25 8.68667 3.87551 6 7.11391 6Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconGooey;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAqpB,EAArpB,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,+hBAA+hB,OAAO,eAAe,YAAY,MAAK,CAAI,GAG/oB",
  "debugId": "52974EE9FBF9400A64756E2164756E21",
  "names": []
}