lost-sia
Version:
Single Image Annotation Tool
16 lines (15 loc) • 598 B
TypeScript
import { CSSProperties } from 'react';
import { Label, Point } from '../../../types';
type AnnoBarProps = {
annotationCoordinates: Point[];
canLabel: boolean;
color: string;
labels: Label[];
selectedLabelIds: number[];
isSelected: boolean;
svgScale: number;
style: CSSProperties;
onLabelIconClicked: (markerPosition: Point) => void;
};
declare const AnnoBar: ({ annotationCoordinates, canLabel, color, labels, selectedLabelIds, isSelected, svgScale, style, onLabelIconClicked, }: AnnoBarProps) => import("react/jsx-runtime").JSX.Element;
export default AnnoBar;