'use client'; import { createLazyComponent } from '../../../../common/lazy-wrapper'; import type { GaugeProps } from './types'; export const LazyGauge = createLazyComponent( () => import('./Gauge').then((mod) => ({ default: mod.GaugeCombined })), { displayName: 'LazyGauge', fallback:
, } ); export type { GaugeProps } from './types';