{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMaintenance/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 IconMaintenance: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"maintenance, settings, service, tweak\"><path d=\"M16.8875 3.11219C17.1385 2.86121 17.0542 2.43727 16.7151 2.33256C16.0149 2.11639 15.2709 2 14.4997 2C10.3576 2 6.99973 5.35786 6.99973 9.5C6.99973 10.5332 7.20865 11.5176 7.58653 12.4132L2.48717 17.5126C1.80376 18.196 1.80375 19.304 2.48717 19.9874L4.0123 21.5126C4.69572 22.196 5.80375 22.196 6.48717 21.5126L11.5865 16.4132C12.4822 16.7911 13.4666 17 14.4997 17C18.6419 17 21.9997 13.6421 21.9997 9.5C21.9997 8.72883 21.8833 7.98484 21.6672 7.28464C21.5625 6.9455 21.1385 6.86121 20.8875 7.11219L17.9997 10C16.8952 11.1046 15.1043 11.1046 13.9997 10C12.8952 8.89543 12.8952 7.10457 13.9997 6L16.8875 3.11219Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMaintenance;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAktB,EAAltB,IAAqB,EAAO,UAAU,yCAAwC,gBAAC,OAAD,CAAM,EAAE,qmBAAqmB,KAAK,eAAc,CAAI,GAG5sB",
  "debugId": "116D9D0B8AD6387964756E2164756E21",
  "names": []
}