{
  "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.8877 3.11219C17.1387 2.86121 17.0544 2.43727 16.7152 2.33256C16.015 2.11639 15.2711 2 14.4999 2C10.3578 2 6.99989 5.35786 6.99989 9.5C6.99989 10.5332 7.2088 11.5176 7.58668 12.4132L2.03022 17.9697C1.73732 18.2626 1.73732 18.7374 2.03022 19.0303L4.96956 21.9697C5.26245 22.2626 5.73732 22.2626 6.03022 21.9697L11.5867 16.4132C12.4823 16.7911 13.4667 17 14.4999 17C18.642 17 21.9999 13.6421 21.9999 9.5C21.9999 8.72883 21.8835 7.98484 21.6673 7.28464C21.5626 6.9455 21.1387 6.86121 20.8877 7.11219L17.9999 10C16.8953 11.1046 15.1045 11.1046 13.9999 10C12.8953 8.89543 12.8953 7.10457 13.9999 6L16.8877 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,gBAAotB,EAAptB,IAAqB,EAAO,UAAU,yCAAwC,gBAAC,OAAD,CAAM,EAAE,umBAAumB,KAAK,eAAc,CAAI,GAG9sB",
  "debugId": "8024E3F52574CB1564756E2164756E21",
  "names": []
}