You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
686 B
TypeScript
27 lines
686 B
TypeScript
// Copyright (C) 2020 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import React from 'react';
|
|
import Icon from '@ant-design/icons';
|
|
import Tooltip from 'antd/lib/tooltip';
|
|
|
|
import { FitIcon } from 'icons';
|
|
import { Canvas } from 'cvat-canvas-wrapper';
|
|
|
|
interface Props {
|
|
canvasInstance: Canvas;
|
|
}
|
|
|
|
function FitControl(props: Props): JSX.Element {
|
|
const { canvasInstance } = props;
|
|
|
|
return (
|
|
<Tooltip title='Fit the image [Double Click]' placement='right' mouseLeaveDelay={0}>
|
|
<Icon className='cvat-fit-control' component={FitIcon} onClick={(): void => canvasInstance.fit()} />
|
|
</Tooltip>
|
|
);
|
|
}
|
|
|
|
export default React.memo(FitControl);
|