@openhands/ui
Version:
OpenHands UI Components
9 lines (8 loc) • 421 B
TypeScript
import { BaseProps, HTMLProps } from '../../shared/types';
type RadioOptionProps = Omit<HTMLProps<"input">, "id" | "checked"> & {
label: React.ReactNode;
labelClassName?: string;
id: string;
} & BaseProps;
export declare const RadioOption: ({ className, label, labelClassName, value, id: propId, disabled, onChange, testId, ...props }: RadioOptionProps) => import("react/jsx-runtime").JSX.Element;
export {};