{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconProcessor/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 IconProcessor: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"processor, chip\"><path d=\"M9.49878 11.999C9.49878 10.6183 10.6181 9.49902 11.9988 9.49902C13.3795 9.49902 14.4988 10.6183 14.4988 11.999C14.4988 13.3797 13.3795 14.499 11.9988 14.499C10.6181 14.499 9.49878 13.3797 9.49878 11.999Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1.99609C12.4142 1.99609 12.75 2.33188 12.75 2.74609V4H15.25V2.75C15.25 2.33579 15.5858 2 16 2C16.4142 2 16.75 2.33579 16.75 2.75V4.03304C18.4211 4.2557 19.7443 5.57889 19.967 7.25H21.25C21.6642 7.25 22 7.58579 22 8C22 8.41421 21.6642 8.75 21.25 8.75H20V11.25H21.25C21.6642 11.25 22 11.5858 22 12C22 12.4142 21.6642 12.75 21.25 12.75H20V15.25H21.25C21.6642 15.25 22 15.5858 22 16C22 16.4142 21.6642 16.75 21.25 16.75H19.967C19.7443 18.4211 18.4211 19.7443 16.75 19.967V21.25C16.75 21.6642 16.4142 22 16 22C15.5858 22 15.25 21.6642 15.25 21.25V20H12.75V21.25C12.75 21.6642 12.4142 22 12 22C11.5858 22 11.25 21.6642 11.25 21.25V20H8.75V21.25C8.75 21.6642 8.41421 22 8 22C7.58579 22 7.25 21.6642 7.25 21.25V19.967C5.57889 19.7443 4.2557 18.4211 4.03304 16.75H2.75C2.33579 16.75 2 16.4142 2 16C2 15.5858 2.33579 15.25 2.75 15.25H4V12.75H2.75C2.33579 12.75 2 12.4142 2 12C2 11.5858 2.33579 11.25 2.75 11.25H4V8.75H2.75C2.33579 8.75 2 8.41421 2 8C2 7.58579 2.33579 7.25 2.75 7.25H4.03304C4.2557 5.57889 5.57889 4.2557 7.25 4.03304V2.74609C7.25 2.33188 7.58579 1.99609 8 1.99609C8.41421 1.99609 8.75 2.33188 8.75 2.74609V4H11.25V2.74609C11.25 2.33188 11.5858 1.99609 12 1.99609ZM11.9988 7.99902C9.78964 7.99902 7.99878 9.78988 7.99878 11.999C7.99878 14.2082 9.78964 15.999 11.9988 15.999C14.2079 15.999 15.9988 14.2082 15.9988 11.999C15.9988 9.78988 14.2079 7.99902 11.9988 7.99902Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconProcessor;\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,gBAA6sD,EAA7sD,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,8MAA8M,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,q2CAAq2C,KAAK,eAAc,CAAI,GAGvsD",
  "debugId": "388E89964B30C0CE64756E2164756E21",
  "names": []
}