@atlaskit/atlassian-navigation
Version:
A horizontal navigation component for Atlassian apps.
16 lines (15 loc) • 499 B
TypeScript
/**
* @deprecated `@atlaskit/atlassian-navigation` is deprecated. Use `@atlaskit/navigation-system` instead.
*/
export type SkeletonCreateButtonProps = {
/**
* Text to be displayed inside the skeleton create button.
*/
text: string;
/**
* 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;
};