@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) • 974 B
text/typescript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { ArcGauge } from './ArcGauge.js';
import { ArcGaugeProps } from './ArcGaugeProps';
import { CircularGauge } from './CircularGauge.js';
import { CircularGaugeProps } from './CircularGaugeProps';
import { LinearGauge } from './LinearGauge.js';
import { LinearGaugeProps } from './LinearGaugeProps';
import { RadialGauge } from './RadialGauge.js';
import { RadialGaugeProps } from './RadialGaugeProps';
export * from './common/gauges';
export * from './types';
export { ArcGauge, ArcGaugeProps, CircularGauge, CircularGaugeProps, LinearGauge, LinearGaugeProps, RadialGauge, RadialGaugeProps };