UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

15 lines (14 loc) 495 B
import { ViewProps } from "@vnxjs/components/types/View"; import { ReactNode } from "react"; import { RadioGroupDirection } from "./radio-group.shared"; export interface RadioGroupProps extends ViewProps { defaultValue?: any; value?: any; disabled?: boolean; direction?: RadioGroupDirection; size?: number; children?: ReactNode; onChange?(value: any): void; } declare function RadioGroup(props: RadioGroupProps): JSX.Element; export default RadioGroup;