UNPKG

@gravity-ui/uikit

Version:

Gravity UI base styling and components

8 lines (7 loc) 339 B
import type { TabProps } from "./types.js"; type TabContentProps = Pick<Extract<TabProps, { href?: never; component?: never; }>, 'icon' | 'children' | 'value' | 'counter' | 'label'>; export declare function TabContent({ icon, children, value, counter, label }: TabContentProps): import("react/jsx-runtime").JSX.Element; export {};