UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

18 lines (17 loc) 598 B
import { RadioGroupItemProps } from '@ark-ui/react'; import { RadioGroupVariantProps } from 'styled-system/recipes'; /** * This module contains the Radio component. * @module */ export type RadioProps = RadioGroupVariantProps & RadioGroupItemProps; /** * The Radio component is used to allow users to select a single option from a list of options. * @see https://cerberus.digitalu.design/react/radio * @memberof module:Field * @example * ```tsx * <Radio value="option1">Option 1</Radio> * ``` */ export declare function Radio(props: RadioProps): import("react/jsx-runtime").JSX.Element;