@cimpress/react-components
Version:
React components to support the MCP styleguide
14 lines • 461 B
TypeScript
import { 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) => JSX.Element;
//# sourceMappingURL=NavTab.d.ts.map