UNPKG

@duffel/components

Version:

Component library to build your travel product with Duffel.

8 lines (7 loc) 198 B
import * as React from "react"; export interface RadioButtonProps { value: string; checked?: boolean; className?: string; } export declare const RadioButton: React.FC<RadioButtonProps>;