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