UNPKG

@ark-ui/react

Version:

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

7 lines (6 loc) 303 B
import { ReactNode } from 'react'; import { UseImageCropperContext } from './use-image-cropper-context'; export interface ImageCropperContextProps { children: (context: UseImageCropperContext) => ReactNode; } export declare const ImageCropperContext: (props: ImageCropperContextProps) => ReactNode;