From e97325a2c174a87c29593d1b42b9a1cc1eaf11af Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 4 Oct 2023 15:06:29 +0200 Subject: refactor(components): rewrite HelpButton component --- src/components/molecules/buttons/help-button.tsx | 40 ------------------------ 1 file changed, 40 deletions(-) delete mode 100644 src/components/molecules/buttons/help-button.tsx (limited to 'src/components/molecules/buttons/help-button.tsx') diff --git a/src/components/molecules/buttons/help-button.tsx b/src/components/molecules/buttons/help-button.tsx deleted file mode 100644 index 7a01b14..0000000 --- a/src/components/molecules/buttons/help-button.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import { forwardRef, type ForwardRefRenderFunction } from 'react'; -import { useIntl } from 'react-intl'; -import { Button, type ButtonProps } from '../../atoms'; -import styles from './help-button.module.scss'; - -export type HelpButtonProps = Pick< - ButtonProps, - 'className' | 'isPressed' | 'onClick' ->; - -const HelpButtonWithRef: ForwardRefRenderFunction< - HTMLButtonElement, - HelpButtonProps -> = ({ className = '', ...props }, ref) => { - const intl = useIntl(); - const text = intl.formatMessage({ - defaultMessage: 'Help', - id: 'i+/ckF', - description: 'HelpButton: screen reader text', - }); - - return ( - - ); -}; - -/** - * HelpButton component - * - * Render a button with an interrogation mark icon. - */ -export const HelpButton = forwardRef(HelpButtonWithRef); -- cgit v1.2.3