@progress/kendo-react-gauges
Version:
React Gauges provide a set of React components for building beautiful and customizable gauges. KendoReact Gauges package
19 lines (18 loc) • 693 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
*-------------------------------------------------------------------------------------------
*/
"use client";
import { ArcGauge as a } from "./ArcGauge.mjs";
import { CircularGauge as u } from "./CircularGauge.mjs";
import { LinearGauge as g } from "./LinearGauge.mjs";
import { RadialGauge as p } from "./RadialGauge.mjs";
export {
a as ArcGauge,
u as CircularGauge,
g as LinearGauge,
p as RadialGauge
};