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