UNPKG

@accelint/design-toolkit

Version:

An open-source component library to serve as part of the entire ecosystem of UX for Accelint.

14 lines (11 loc) 406 B
import * as react from 'react'; import { ContextValue } from 'react-aria-components'; import { RadioGroupProps } from './types.js'; import '../label/types.js'; /** * Context for RadioGroup component * * Provides context for RadioGroup component to share state with Radio components */ declare const RadioContext: react.Context<ContextValue<RadioGroupProps, HTMLDivElement>>; export { RadioContext };