@geist-ui/react
Version:
Modern and minimalist React UI library.
16 lines (15 loc) • 583 B
TypeScript
import React from 'react';
interface Props {
value?: string | number;
initialValue?: string | number;
disabled?: boolean;
onChange?: (value: string | number) => void;
className?: string;
useRow?: boolean;
}
declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>;
export declare type RadioGroupProps = Props & NativeAttrs;
declare const RadioGroup: React.ForwardRefExoticComponent<Props & NativeAttrs & {
children?: React.ReactNode;
} & import("../use-scaleable").ScaleableProps & React.RefAttributes<unknown>>;
export default RadioGroup;