// Adapted from jalcoui (MIT) — github.com/jal-co/ui 'use client'; import { createLazyComponent } from '../../../../common/lazy-wrapper'; import type { StatusIndicatorProps } from './types'; export const LazyStatusIndicator = createLazyComponent( () => import('./StatusIndicator').then((mod) => ({ default: mod.StatusIndicator })), { displayName: 'LazyStatusIndicator', fallback: ( ), }, ); export type { StatusIndicatorProps } from './types';