diff --git a/src/gauge/Gauge.tsx b/src/gauge/Gauge.tsx
index e54acdb..32d3dd1 100644
--- a/src/gauge/Gauge.tsx
+++ b/src/gauge/Gauge.tsx
@@ -11,38 +11,17 @@ import {
import { calculateFormula } from "bmat/numbers";
const Gauge = ({
- minValue,
- maxValue,
oid,
formula,
state,
type,
engine,
- digits,
- units,
- className,
- threshold,
- format_with,
- set_color_with,
- set_class_name_with,
- diameter,
- warnValue,
- critValue,
- lowWarnValue,
- lowCritValue,
- startAngle,
- endAngle,
- numTicks,
- offset,
- arcStrokeWidth,
- strokeLineCap,
tickLength,
baseRadius,
tipRadius,
needleOffset,
middleRadius,
- showValue,
- label
+ ...rest
}: GaugeParams) => {
const eva_state = useEvaState({ oid, engine }, [oid, engine]);
@@ -62,176 +41,71 @@ const Gauge = ({
case GaugeType.Sphere:
return (
);
case GaugeType.Light:
return (
);
case GaugeType.Minimal:
return (
);
case GaugeType.Modern:
return (
);
default:
return (
);
}