{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGauge/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 IconGauge: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"gauge, tachometer, performance, speed, scale\"><path d=\"M12 2C11.5858 2 11.25 2.33579 11.25 2.75V5.25C11.25 5.66421 11.5858 6 12 6C12.4142 6 12.75 5.66421 12.75 5.25V3.53263C17.0931 3.91233 20.5 7.55831 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 10.682 3.79943 9.43614 4.33327 8.32473C4.51261 7.95135 4.35532 7.50329 3.98194 7.32394C3.60857 7.1446 3.1605 7.3019 2.98116 7.67527C2.35206 8.985 2 10.4524 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2Z\" fill=\"currentColor\"/><path d=\"M4.96967 4.96967C5.26256 4.67678 5.73744 4.67678 6.03033 4.96967L10.1126 9.05197C10.6572 8.7026 11.3049 8.5 12 8.5C13.933 8.5 15.5 10.067 15.5 12C15.5 13.933 13.933 15.5 12 15.5C10.067 15.5 8.5 13.933 8.5 12C8.5 11.3049 8.7026 10.6572 9.05197 10.1126L4.96967 6.03033C4.67678 5.73744 4.67678 5.26256 4.96967 4.96967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconGauge;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAq6B,EAAr6B,IAAqB,EAAO,UAAU,gDAA+C,gBAAC,OAAD,CAAM,EAAE,sdAAsd,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8TAA8T,KAAK,eAAc,CAAI,GAG/5B",
  "debugId": "90C0058168E08EA864756E2164756E21",
  "names": []
}