import React from 'react'; import classNames from 'classnames'; import { getButtonClassName } from '../Button/Button'; type HTMLButtonProps = Omit, 'children'>; export interface PrintPositionProps extends HTMLButtonProps { /** * The position number. */ position: number; /** * The label of the button shown on hover. * If not provided, the button will not be shown. */ label?: string; /** * Callback triggered when pressing the button. */ onClick?: HTMLButtonProps['onClick']; /** * Disables the button. */ disabled?: HTMLButtonProps['disabled']; } export const PrintPosition = React.forwardRef( ({ label, position, ...buttonProps }, ref) => { return ( ); } ); PrintPosition.displayName = 'PrintPosition';