UNPKG

@cimpress/react-components

Version:
14 lines 474 B
import React, { ReactNode } from 'react'; import { PublicComponentProps } from './types'; export interface NavTabProps extends PublicComponentProps { /** * Provide content for the NavTab as children. */ children?: ReactNode; /** * If tabs should be stacked vertically */ vertical?: boolean; } export declare const NavTab: ({ children, className, vertical, ...rest }: NavTabProps) => React.JSX.Element; //# sourceMappingURL=NavTab.d.ts.map