UNPKG

@duffel/components

Version:

Component library to build your travel product with Duffel.

14 lines (13 loc) 389 B
/// <reference types="@duffel/api" /> import { SeatMapCabinRowSectionElementAmenity } from "@duffel/api/types"; import * as React from "react"; export interface LegendProps { /** * The set of additional symbols to display */ symbols: Set<SeatMapCabinRowSectionElementAmenity>; } /** * The legend for the seat map. */ export declare const Legend: React.FC<LegendProps>;