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 { UseAngleSliderContext } from './use-angle-slider-context'; export interface AngleSliderContextProps { children: (context: UseAngleSliderContext) => ReactNode; } export declare const AngleSliderContext: (props: AngleSliderContextProps) => ReactNode;