import React from 'react' import Button from '../Button/Button' import Icon from '../Icons/Icon' import { type IconProps } from '../Icons/Icon.models' export type DragHandleProps = Omit & { /** Optional prop to add a test id to the DragHandle for QA testing */ qaTestId?: string } const DragHandle = ({ iconSize, qaTestId = 'drag-handle-button', }: DragHandleProps) => { return ( ) } export default DragHandle