UNPKG

@ark-ui/react

Version:

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

7 lines (6 loc) 266 B
import { ReactNode } from 'react'; import { UseAvatarContext } from './use-avatar-context'; export interface AvatarContextProps { children: (context: UseAvatarContext) => ReactNode; } export declare const AvatarContext: (props: AvatarContextProps) => ReactNode;