UNPKG

@atlaskit/atlassian-navigation

Version:

A horizontal navigation component for Atlassian products.

18 lines (17 loc) 942 B
/// <reference types="react" /> import { IconButtonProps } from '../IconButton/types'; /** * __Profile__ * * A profile button which takes an icon/avatar component can be that can be * passed into `AtlassianNavigation`'s `renderProfile` prop. * * - [Examples](https://atlassian.design/components/atlassian-navigation/examples#profile) * - [Code](https://atlassian.design/components/atlassian-navigation/code) */ export declare const Profile: import("react").ForwardRefExoticComponent<import("../IconButton/types").BaseIconButtonProps & { icon: import("react").ReactChild | undefined; theme?: ((current: (props: import("@atlaskit/button").ThemeProps) => import("@atlaskit/button").ThemeTokens, props: import("@atlaskit/button").ThemeProps) => import("@atlaskit/button").ThemeTokens) | undefined; } & import("react").RefAttributes<HTMLElement>>; declare const _default: (props: IconButtonProps) => void; export default _default;