UNPKG

lost-sia

Version:

Single Image Annotation Tool

13 lines (12 loc) 412 B
import { CSSProperties } from 'react'; type TagLabelProps = { name: string; color?: string; size?: number; style?: CSSProperties; triangleSize?: number; onClick?: () => void; onRemove?: () => void; }; declare const TagLabel: ({ name, color, size: bodySize, style, triangleSize, onClick, onRemove, }: TagLabelProps) => import("react/jsx-runtime").JSX.Element; export default TagLabel;