UNPKG

react-visual-annotator

Version:

Powerful React image and video annotation tool for machine learning, computer vision, and AI training data creation. Features rotatable bounding boxes, polygons, keypoints, segmentation with TypeScript support and Material-UI components.

13 lines (11 loc) 463 B
import { IconSidebarItem } from '../../types/common.ts'; import { AnnotatorToolEnum } from '../../MainLayout/types.ts'; interface IconSidebarProps { items?: Array<IconSidebarItem>; onClickItem: (item: { name: string; }) => void; selectedTools?: Array<AnnotatorToolEnum>; } export declare const IconSidebar: ({ items, onClickItem, selectedTools, }: IconSidebarProps) => import("react/jsx-runtime").JSX.Element; export default IconSidebar;