UNPKG

welcome-ui

Version:

Customizable design system with react • styled-components • styled-system and ariakit.

12 lines (11 loc) 384 B
import { CreateWuiProps } from '../System'; import { UseTab } from '.'; import type * as Ariakit from '@ariakit/react'; export type TabPanelOptions = { store: UseTab; }; export type TabPanelProps = CreateWuiProps<typeof Ariakit.TabPanel, TabPanelOptions>; /** * @name Tabs.TabPanel */ export declare const TabPanel: import('../System').CreateWuiComponent<"div", TabPanelProps>;