UNPKG

seatmap-painter

Version:

React-based UI tools for creating and painting groups on a provided SVG seatmap

12 lines (11 loc) 267 B
import { GroupedSeats } from '../../types'; export interface SeatmapPainterProps { svg: string; value?: GroupedSeats; onChange?: (value: GroupedSeats) => void; groups?: { value: string; label: string; color: string; }[]; }