UNPKG

@ark-ui/react

Version:

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

9 lines (8 loc) 280 B
import { ReactNode } from 'react'; interface FrameContentProps { onMount?: VoidFunction | undefined; onUnmount?: VoidFunction | undefined; children?: React.ReactNode | undefined; } export declare const FrameContent: (props: FrameContentProps) => ReactNode; export {};