@mui/joy
Version:
Joy UI is an open-source React component library that implements MUI's own design principles. It's comprehensive and can be used in production out of the box.
10 lines (9 loc) • 418 B
TypeScript
import * as React from 'react';
import { RadioProps } from '../Radio/RadioProps';
declare const RadioGroupContext: React.Context<(Pick<RadioProps, "overlay" | "size" | "disableIcon"> & {
orientation?: "horizontal" | "vertical" | undefined;
name?: string | undefined;
value?: unknown;
onChange?: React.ChangeEventHandler<HTMLInputElement> | undefined;
}) | undefined>;
export default RadioGroupContext;