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.

15 lines 586 B
import * as React from "react"; import type { Props, Option } from "../types"; interface InputSelectOptionProps { id: Props["id"]; ref: React.Ref<HTMLDivElement>; active: boolean; isSelected: boolean; title: Option["title"]; description: Option["description"]; prefix: Option["prefix"]; onClick: (ev: React.SyntheticEvent) => void; } declare const InputSelectOption: ({ active, id, onClick, isSelected, title, description, prefix, ref, }: InputSelectOptionProps) => React.JSX.Element; export default InputSelectOption; //# sourceMappingURL=index.d.ts.map