UNPKG

lune-ui-lib

Version:

Lune UI Components Library

11 lines (10 loc) 277 B
import { FC } from 'react'; export interface Props { value: string | undefined; onChange: (value: string | undefined) => void; error?: string; placeholder?: string; disabled?: boolean; } declare const SeaportPicker: FC<Props>; export default SeaportPicker;