UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

10 lines (9 loc) 532 B
import { Assign } from '../../types'; import { HTMLProps, PolymorphicProps } from '../factory'; import { UseRatingGroupProps } from './use-rating-group'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface RatingGroupRootBaseProps extends UseRatingGroupProps, PolymorphicProps { } export interface RatingGroupRootProps extends Assign<HTMLProps<'div'>, RatingGroupRootBaseProps> { } export declare const RatingGroupRoot: ForwardRefExoticComponent<RatingGroupRootProps & RefAttributes<HTMLDivElement>>;