{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconClaw/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 IconClaw: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"claw, openclaw, ai, qclaw\"><path d=\"M10.7998 14.0147L8.78539 13.4853L8.28179 11.8971L6.77099 11.3676L6.53209 10.3631C6.37692 9.71056 5.79399 9.25 5.12329 9.25C4.4703 9.25 3.9 9.68951 3.83879 10.3396C3.7639 11.1349 3.7654 12.2732 4.13328 13.4372C4.85399 15.7174 7.73342 18.25 7.73342 18.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M9.41183 21.2998H17.8574C23.1531 14.1426 19.3131 0.0716867 9.73622 3.26372L10.6287 5.39186L10.233 6.69549L11.399 7.65333L10.9023 9.67504L11.8958 11.1912L11.399 14.7292L7.75 18.1078C7.75 20.236 9.41183 21.2998 9.41183 21.2998Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M6.3 2H5.7L4.95 3.95L3 4.7V5.3L4.95 6.05L5.7 8H6.3L7.05 6.05L9 5.3V4.7L7.05 3.95L6.3 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconClaw;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAgwB,EAAhwB,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,OAAD,CAAM,EAAE,+PAA+P,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,oOAAoO,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,0FAA0F,KAAK,eAAc,CAAI,GAG1vB",
  "debugId": "01BC78E1C18974F664756E2164756E21",
  "names": []
}