box-ui-elements
Version:
Box UI Elements
13 lines (12 loc) • 438 B
TypeScript
import * as React from 'react';
import './SidebarNavSign.scss';
import type { TargetingApi } from '../../features/targeting/types';
export interface SignSidebarProps {
blockedReason: string;
enabled: boolean;
onClick: () => void;
onClickSignMyself: () => void;
targetingApi?: TargetingApi;
}
export declare function SidebarNavSign(signSidebarProps: SignSidebarProps): React.JSX.Element;
export default SidebarNavSign;