UNPKG

seatmap-painter

Version:

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

9 lines (7 loc) 231 B
import { GroupedSeats } from "../../types"; export interface SeatmapPainterProps { svg: string; value?: GroupedSeats; onChange?: (value: GroupedSeats) => void; groups?: { value: string; label: string; color: string }[]; }