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