{
  "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=\"M22.0003 9.5C22.0003 13.6421 18.6424 17 14.5003 17C13.4671 17 12.4827 16.7911 11.5871 16.4132L6.7503 21.25C5.64573 22.3546 3.85487 22.3546 2.7503 21.25C1.64573 20.1454 1.64573 18.3546 2.7503 17.25L7.5871 12.4132C7.20921 11.5176 7.0003 10.5332 7.0003 9.5C7.0003 5.35786 10.3582 2 14.5003 2C15.444 2 16.3471 2.17431 17.179 2.49249C17.6466 2.67134 17.7335 3.2668 17.3795 3.6208L14.0003 7C13.1719 7.82843 13.1719 9.17157 14.0003 10C14.8287 10.8284 16.1719 10.8284 17.0003 10L20.3795 6.6208C20.7335 6.2668 21.329 6.35375 21.5078 6.82134C21.826 7.65322 22.0003 8.55626 22.0003 9.5Z\" 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,gBAA+qB,EAA/qB,IAAqB,EAAO,UAAU,yCAAwC,gBAAC,OAAD,CAAM,EAAE,kkBAAkkB,KAAK,eAAc,CAAI,GAGzqB",
  "debugId": "C4A58335C87C1FC464756E2164756E21",
  "names": []
}