import { shell } from 'electron'; import { SessionIconButton, SessionIconSize } from '../icon'; import { SessionIconButtonProps } from '../icon/SessionIconButton'; export const HelpDeskButton = ( props: Omit & { iconSize?: SessionIconSize } ) => { return ( { void shell.openExternal( 'https://sessionapp.zendesk.com/hc/en-us/articles/4439132747033-How-do-Session-ID-usernames-work' ); }} /> ); };