UNPKG

@duffel/components

Version:

Component library to build your travel product with Duffel.

16 lines (15 loc) 366 B
import * as React from "react"; export interface DeckSelectProps { /** * The currently selected deck number */ value: number; /** * What to do when the user selects a deck */ setValue: (value: number) => void; } /** * The deck selection component for the seat map. */ export declare const DeckSelect: React.FC<DeckSelectProps>;