UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

8 lines (7 loc) 347 B
import { RadioButtonConfig } from "./types"; type Props<T> = RadioButtonConfig<T> & { groupName: string; onChange: (value: string) => void; }; export declare const VuiSuperRadioButton: <T extends string>({ label, description, value, checked, onChange, groupName, ...rest }: Props<T>) => import("react/jsx-runtime").JSX.Element; export {};