UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

14 lines (13 loc) 492 B
import * as React from "react"; import type { Props, Option } from "../types"; interface InputSelectOptionProps { id: Props["id"]; active: boolean; isSelected: boolean; title: Option["title"]; description: Option["description"]; prefix: Option["prefix"]; onClick: (ev: React.SyntheticEvent) => void; } declare const InputSelectOption: React.ForwardRefExoticComponent<InputSelectOptionProps & React.RefAttributes<HTMLDivElement>>; export default InputSelectOption;