import { ReactNode } from 'react'; import { Badge } from './Badge'; import { Box } from './Box'; import { Surface } from './Surface'; import { Text } from './Text'; export interface BulkActionsProps { children: ReactNode; selectedCount: number; isOpen: boolean; } export const BulkActions = ({ children, selectedCount, isOpen }: BulkActionsProps) => { if (!isOpen) return null; return ( {selectedCount} Items Selected {children} ); };