'use client'; /** * Lazy-loaded SelectionToolbar Component */ import { createLazyComponent, LoadingFallback } from '../../../common/lazy-wrapper'; import type { SelectionToolbarProps, SelectionToolbarContentProps, SelectionToolbarActionProps, } from './types'; export type { SelectionToolbarProps, SelectionToolbarContentProps, SelectionToolbarActionProps, } from './types'; export const LazySelectionToolbar = createLazyComponent( () => import('./parts/SelectionToolbar').then((m) => ({ default: m.SelectionToolbar })), { displayName: 'LazySelectionToolbar', fallback: , } ); export const LazySelectionToolbarContent = createLazyComponent( () => import('./parts/SelectionToolbar').then((m) => ({ default: m.SelectionToolbarContent })), { displayName: 'LazySelectionToolbarContent', fallback: null, } ); export const LazySelectionToolbarAction = createLazyComponent( () => import('./parts/SelectionToolbar').then((m) => ({ default: m.SelectionToolbarAction })), { displayName: 'LazySelectionToolbarAction', fallback: null, } );