import RhUiGripVerticalFillIcon from '@patternfly/react-icons/dist/esm/icons/rh-ui-grip-vertical-fill-icon'; import { Button } from '@patternfly/react-core/dist/esm/components/Button'; export interface DraggableCellProps { id: string; className?: string; onClick?: (event: React.MouseEvent) => void; 'aria-label'?: string; } export const DraggableCell: React.FunctionComponent = ({ className, onClick, 'aria-label': ariaLabel, id, ...props }: DraggableCellProps) => (