@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
9 lines (8 loc) • 514 B
TypeScript
import { ViewportProps } from '@zag-js/navigation-menu';
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface NavigationMenuViewportBaseProps extends ViewportProps, PolymorphicProps {
}
export interface NavigationMenuViewportProps extends HTMLProps<'div'>, NavigationMenuViewportBaseProps {
}
export declare const NavigationMenuViewport: ForwardRefExoticComponent<NavigationMenuViewportProps & RefAttributes<HTMLDivElement>>;