@atlaskit/atlassian-navigation
Version:
A horizontal navigation component for Atlassian apps.
18 lines (17 loc) • 688 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import React from 'react';
import { type SkeletonCreateButtonProps } from './types';
/**
* __Skeleton create button__
*
* Skeleton buttons are lightweight HTML button elements with CSS that represent
* their heavier interactive counterparts, for use when elements of the
* navigation are loaded dynamically. This one represents the Create button.
*
* - [Examples](https://atlassian.design/components/atlassian-navigation/examples#skeleton-button)
* - [Code](https://atlassian.design/components/atlassian-navigation/code)
*/
export declare const SkeletonCreateButton: ({ text, testId, }: SkeletonCreateButtonProps) => React.JSX.Element;