UNPKG

soda-material

Version:

A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)

14 lines (13 loc) 457 B
/// <reference types="react" /> export declare const RadioGroupContext: import("react").Context<{ value?: string | undefined; onChange?: ((value: string) => void) | undefined; } | undefined>; /** * Container component for `<RadioButton>` */ export declare function RadioGroup({ value, onChange, children, }: { value?: string; onChange?: (value: string) => void; children?: React.ReactNode; }): import("react/jsx-runtime").JSX.Element;