UNPKG

@feelback/react

Version:

Use Feelback service within your React website

15 lines (14 loc) 580 B
import type { ReactElement } from "react"; import type { FeelbackValueDefinition } from "../types"; export type RadioValueListProps = Readonly<{ active?: unknown; isDisabled?: boolean; items: readonly FeelbackValueDefinition[]; onRenderAddon?: (entry: { item: FeelbackValueDefinition; isSelected: boolean; isDisabled: boolean; }) => ReactElement | undefined | null | false | void; onSelected?: (value: string) => void; }>; export declare function RadioValueList(props: RadioValueListProps): import("react/jsx-runtime").JSX.Element;