import { HTMLAttributes } from 'react';

export type GaugeProps = {
  color?: string;
  value: number | undefined;
  valueLabel?: string;
}
  & Pick<HTMLAttributes<any>, 'className'>