@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
9 lines (8 loc) • 466 B
text/typescript
import { ItemProps } from '@zag-js/radio-group';
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface RadioGroupItemBaseProps extends ItemProps, PolymorphicProps {
}
export interface RadioGroupItemProps extends HTMLProps<'label'>, RadioGroupItemBaseProps {
}
export declare const RadioGroupItem: ForwardRefExoticComponent<RadioGroupItemProps & RefAttributes<HTMLLabelElement>>;