Skip to content

Commit e042264

Browse files
committed
:x
1 parent 0090b8d commit e042264

File tree

3 files changed

+8
-144
lines changed

3 files changed

+8
-144
lines changed
Lines changed: 3 additions & 0 deletions
Loading

src/frontend/apps/impress/src/features/left-panel/components/LeftPanelHelpMenu.tsx

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import { useCallback, useMemo, useState } from 'react';
44
import { useTranslation } from 'react-i18next';
55
import { css } from 'styled-components';
66

7-
import { Box, Icon } from '@/components';
7+
import { Box } from '@/components';
88
import { OnBoarding } from '@/features/on-boarding/components/OnBoarding';
99

10+
import HelpOutlineIcon from '../assets/help-outline.svg';
1011
import WandAndStarsIcon from '../assets/wand-and-stars.svg';
1112

1213
export const LeftPanelHelpMenu = () => {
@@ -53,19 +54,12 @@ export const LeftPanelHelpMenu = () => {
5354
onOpenChange={setIsMenuOpen}
5455
>
5556
<Box $direction="row" $align="center">
56-
<span className="sr-only">{t('Open help menu')}</span>
5757
<Button
5858
aria-label={t('Open help menu')}
5959
color="neutral"
6060
variant="tertiary"
6161
iconPosition="left"
62-
icon={
63-
<Icon
64-
$withThemeInherited
65-
iconName="help_outline"
66-
aria-hidden="true"
67-
/>
68-
}
62+
icon={<HelpOutlineIcon aria-hidden="true" />}
6963
onClick={toggleMenu}
7064
/>
7165
</Box>
@@ -78,7 +72,7 @@ export const LeftPanelHelpMenu = () => {
7872
onSkip={closeModal}
7973
footerLink={{
8074
label: t('Learn more docs features'),
81-
href: '',
75+
href: 'https://docs.numerique.gouv.fr/docs/335e43b5-9e16-4798-a0b4-912e44c7135e/',
8276
}}
8377
/>
8478
</>

0 commit comments

Comments
 (0)