{
  "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=\"M20.8586 1.88481C21.1981 1.9457 21.4241 2.27076 21.3634 2.61039L20.2375 8.9102C21.046 8.92239 21.8156 9.49092 21.9289 10.3965C22.0008 10.9725 21.7679 11.5446 21.3146 11.9073L17.092 15.2852C17.0328 15.3326 16.9983 15.4047 16.9982 15.4805V20.25C16.9982 20.6643 16.6624 21 16.2482 21H7.74821C7.33408 20.9999 6.99821 20.6642 6.99821 20.25V15.4805C6.99814 15.4046 6.96371 15.3326 6.90446 15.2852L2.68181 11.9073C2.22862 11.5446 1.99564 10.9725 2.06755 10.3965C2.22314 9.15208 3.61828 8.54015 4.65056 9.14067C5.51892 9.64595 6.75123 10.3047 8.0822 10.835C9.42466 11.3699 10.8091 11.75 11.9982 11.75C13.1873 11.75 14.5717 11.3699 15.9142 10.835C17.0238 10.3929 18.0633 9.85871 18.882 9.40141C18.8826 9.39757 18.8823 9.39353 18.883 9.38969L20.133 2.38969C20.1939 2.05023 20.519 1.82427 20.8586 1.88481Z\" fill=\"currentColor\"/><path d=\"M11.9982 3.00004C13.9312 3.00004 15.4982 4.56708 15.4982 6.50004C15.4982 8.43304 13.9312 10 11.9982 10C10.0653 9.99995 8.49821 8.43298 8.49821 6.50004C8.49825 4.56714 10.0653 3.00014 11.9982 3.00004Z\" fill=\"currentColor\"/></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,gBAAwmC,EAAxmC,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,EAAE,6xBAA6xB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0MAA0M,KAAK,eAAc,CAAI,GAGlmC",
  "debugId": "EDEFD9C24858DE1264756E2164756E21",
  "names": []
}