{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconConductor/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 IconConductor: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"conductor, ochestrator, vibe\"><path d=\"M16.25 21V16L20.5759 12.5393C20.9936 12.2051 21.2036 11.675 21.1279 11.1454C20.9617 9.9818 19.5624 9.41069 18.5693 10.0394C16.7891 11.1665 14.215 12.5 12 12.5C9.78501 12.5 7.21086 11.1665 5.43068 10.0394C4.43759 9.41069 3.03831 9.9818 2.87209 11.1454C2.79643 11.675 3.00638 12.2051 3.42412 12.5393L7.75 16V21\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><circle cx=\"12\" cy=\"6.5\" r=\"2.75\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M19.5 9.5L21 2\" stroke=\"currentColor\" strokeWidth=\"1.25\"/></CentralIconBase>;\n};\n\nexport default IconConductor;\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,gBAA6jB,EAA7jB,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,EAAE,uTAAuT,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,MAAM,EAAE,OAAO,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,OAAM,CAAI,GAGvjB",
  "debugId": "2C7BB3541D30BE6464756E2164756E21",
  "names": []
}