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