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 & { /** * Set additional classnames to the button wrapper. */ className?: string; }; /** * BackToTop component * * Render a back to top link. */ export const BackToTop: FC = ({ className = '', target }) => { const intl = useIntl(); const linkName = intl.formatMessage({ defaultMessage: 'Back to top', description: 'BackToTop: link text', id: 'm+SUSR', }); return (
); };