{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAgents/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 IconAgents: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"agents, connections, flow\"><path d=\"M6 2C7.39761 2 8.56905 2.95646 8.90234 4.25H16.75C19.0972 4.25 21 6.15279 21 8.5C21 10.8472 19.0972 12.75 16.75 12.75H15.3105L12.5303 15.5303C12.2374 15.8232 11.7626 15.8232 11.4697 15.5303L8.68945 12.75H7.25C5.73122 12.75 4.5 13.9812 4.5 15.5C4.5 17.0188 5.73122 18.25 7.25 18.25H15.0977C15.431 16.9565 16.6024 16 18 16C19.6569 16 21 17.3431 21 19C21 20.6569 19.6569 22 18 22C16.6024 22 15.431 21.0435 15.0977 19.75H7.25C4.90279 19.75 3 17.8472 3 15.5C3 13.1528 4.90279 11.25 7.25 11.25H8.68945L11.4697 8.46973L11.5264 8.41797C11.8209 8.17766 12.2557 8.19512 12.5303 8.46973L15.3105 11.25H16.75C18.2688 11.25 19.5 10.0188 19.5 8.5C19.5 6.98122 18.2688 5.75 16.75 5.75H8.90234C8.56905 7.04353 7.39761 8 6 8C4.34315 8 3 6.65685 3 5C3 3.34315 4.34315 2 6 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAgents;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAu1B,EAAv1B,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,OAAD,CAAM,EAAE,svBAAsvB,KAAK,eAAc,CAAI,GAGj1B",
  "debugId": "AE946DD1BA8237AF64756E2164756E21",
  "names": []
}