UNPKG

@ark-ui/react

Version:

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

9 lines (8 loc) 441 B
import { ContentProps } from '@zag-js/tabs'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface TabContentBaseProps extends ContentProps, PolymorphicProps { } export interface TabContentProps extends HTMLProps<'div'>, TabContentBaseProps { } export declare const TabContent: ForwardRefExoticComponent<TabContentProps & RefAttributes<HTMLDivElement>>;