@atlaskit/atlassian-navigation
Version:
A horizontal navigation component for Atlassian products.
13 lines (12 loc) • 465 B
JavaScript
import React from 'react';
import { gridSize } from '@atlaskit/theme/constants';
import { IconButtonSkeleton } from '../IconButton/skeleton';
// Not exported to consumers, only used in NavigationSkeleton
// eslint-disable-next-line @repo/internal/react/require-jsdoc
export var ProfileSkeleton = function ProfileSkeleton() {
return /*#__PURE__*/React.createElement(IconButtonSkeleton, {
marginLeft: 6,
marginRight: 6,
size: gridSize() * 3.25
});
};