@atlaskit/atlassian-navigation
Version:
A horizontal navigation component for Atlassian products.
19 lines (18 loc) • 655 B
TypeScript
/// <reference types="react" />
import { PrimaryButtonProps } from '../PrimaryButton/types';
export declare type PrimaryDropdownButtonProps = Omit<PrimaryButtonProps, 'iconAfter'> & {
/**
* Will set the appearance of the button to look highlighted.
*/
isHighlighted?: boolean;
/**
* A `testId` prop is provided for specified elements,
* which is a unique string that appears as a data attribute `data-testid` in the rendered code,
* serving as a hook for automated tests
*/
testId?: string;
/**
* Optional text to show when the button is focused or hovered.
*/
tooltip?: React.ReactNode;
};