Rezi
    Preparing search index...

    Type Alias GaugeProps

    GaugeProps: Readonly<
        {
            height?: SizeConstraint;
            key?: string;
            label?: string;
            style?: TextStyle;
            thresholds?: readonly { value: number; variant: BadgeVariant }[];
            value: number;
            variant?: "linear" | "compact";
            width?: SizeConstraint;
        },
    > & DisplayableProps

    Props for gauge widget. Compact progress display with label.