@vtex/admin-ui
Version:
> VTEX admin component library
13 lines (12 loc) • 490 B
TypeScript
import type { ReactNode } from 'react';
import type { RadioGroupProps as ReakitRadioGroupProps } from 'reakit/Radio';
import type { SystemComponent } from '../../types';
export declare function RadioGroup(props: RadioGroupProps): JSX.Element;
export interface RadioGroupProps extends SystemComponent {
label?: string;
size?: 'regular' | 'small';
orientation?: 'horizontal' | 'vertical';
state: ReakitRadioGroupProps;
children?: ReactNode;
id?: string;
}