blob: d28d6c18ea76f3e80f0d9e15a0ebfe8ca2f8ca2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
import { FC } from 'react';
import { useIntl } from 'react-intl';
import { Arrow, ButtonLink, type ButtonLinkProps } from '../../atoms';
import styles from './back-to-top.module.scss';
export type BackToTopProps = Pick<ButtonLinkProps, 'target'> & {
/**
* Set additional classnames to the button wrapper.
*/
className?: string;
};
/**
* BackToTop component
*
* Render a back to top link.
*/
export const BackToTop: FC<BackToTopProps> = ({ className = '', target }) => {
const intl = useIntl();
const linkName = intl.formatMessage({
defaultMessage: 'Back to top',
description: 'BackToTop: link text',
id: 'm+SUSR',
});
return (
<div className={`${styles.wrapper} ${className}`}>
<ButtonLink
shape="square"
target={`#${target}`}
aria-label={linkName}
className={styles.link}
>
<Arrow aria-hidden={true} direction="top" />
</ButtonLink>
</div>
);
};
|