{
  "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.46777 5.25977C9.22732 5.35463 10.8022 6.15163 11.9297 7.375C12.69 8.19997 13.5148 8.74982 14.3574 8.75C15.0204 8.75 15.6661 8.39306 16.4824 7.90332C17.1739 7.48855 17.9808 7.25004 18.8408 7.25C21.4297 7.25005 23.4995 9.39231 23.5 11.999C23.5 14.6061 21.4301 16.7499 18.8408 16.75C17.9808 16.75 17.1739 16.5114 16.4824 16.0967C15.6662 15.6069 15.0203 15.25 14.3574 15.25C13.5148 15.2502 12.69 15.8 11.9297 16.625C10.7272 17.9298 9.01593 18.7498 7.11426 18.75C3.44582 18.75 0.500394 15.7124 0.5 12.001L0.508789 11.6543C0.685151 8.10173 3.56021 5.25 7.11426 5.25L7.46777 5.25977Z\" fill=\"currentColor\"/></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,gBAAwqB,EAAxqB,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,skBAAskB,KAAK,eAAc,CAAI,GAGlqB",
  "debugId": "1CBC0299C67C16C164756E2164756E21",
  "names": []
}