'use client'; /** * SelectionToolbar * * Toolbar that appears when text is selected within its container. * Useful for text formatting, sharing, or quick actions on selection. * * @example * import { SelectionToolbar, SelectionToolbarContent, SelectionToolbarAction } from '@djangocfg/ui-tools/selection-toolbar'; * * *
Some selectable text...
* * Copy * Share * *
*/ export { SelectionToolbar, SelectionToolbarContent, SelectionToolbarAction, } from './parts'; export { SelectionToolbarProvider, useSelectionToolbarContext, } from './context'; export type { SelectionToolbarProps, SelectionToolbarContentProps, SelectionToolbarActionProps, SelectionToolbarContextValue, } from './types';