UNPKG

@ark-ui/react

Version:

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

7 lines (6 loc) 297 B
import { ReactNode } from 'react'; import { UseRatingGroupContext } from './use-rating-group-context'; export interface RatingGroupContextProps { children: (context: UseRatingGroupContext) => ReactNode; } export declare const RatingGroupContext: (props: RatingGroupContextProps) => ReactNode;