@atlaskit/atlassian-navigation
Version:
A horizontal navigation component for Atlassian apps.
15 lines • 494 B
JavaScript
import React from 'react';
import NotificationIcon from '@atlaskit/icon/core/notification';
import { SkeletonIconButton } from './components/SkeletonIconButton';
/**
* __Nav 4 skeleton notification button__
*
* A nav 4 skeleton notification button.
*
*/
export const Nav4SkeletonNotificationButton = ({
label = ''
}) => /*#__PURE__*/React.createElement(SkeletonIconButton, null, /*#__PURE__*/React.createElement(NotificationIcon, {
label: label,
color: "var(--ds-icon, #292A2E)"
}));