@cimpress/react-components
Version:
React components to support the MCP styleguide
14 lines • 474 B
TypeScript
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