import ButtonLink, { type ButtonLinkProps, } from '@components/atoms/buttons/button-link'; import Arrow from '@components/atoms/icons/arrow'; import { FC } from 'react'; import { useIntl } from 'react-intl'; import styles from './back-to-top.module.scss'; export type BackToTopProps = Pick & { /** * Set additional classnames to the button wrapper. */ className?: string; }; /** * BackToTop component * * Render a back to top link. */ const BackToTop: FC = ({ className = '', target }) => { const intl = useIntl(); const linkName = intl.formatMessage({ defaultMessage: 'Back to top', description: 'BackToTop: link text', id: 'm+SUSR', }); return (
); }; export default BackToTop;