UNPKG

@accelint/design-toolkit

Version:

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

16 lines (13 loc) 499 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { RadioGroupProps } from './types.js'; import 'react'; import 'react-aria-components'; import '../label/types.js'; /** * RadioGroup - Container component for Radio buttons * * Groups related Radio components and manages their selection state. * Only one Radio can be selected at a time within a RadioGroup. */ declare function RadioGroup({ ref, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element; export { RadioGroup };