@progress/kendo-react-gauges
Version:
React Gauges provide a set of React components for building beautiful and customizable gauges. KendoReact Gauges package
18 lines (17 loc) • 606 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { ArcGauge as r } from "./ArcGauge.mjs";
import { CircularGauge as a } from "@progress/kendo-charts";
class t extends r {
constructor() {
super(...arguments), this.gaugeType = a;
}
}
export {
t as CircularGauge
};