import { useI18n } from '@rspress/core/runtime'; import { IconScrollToTop, SvgWrapper, useReadPercent, } from '@rspress/core/theme'; export function ScrollToTop() { const scrollToTop = () => { window.scrollTo({ top: 0, behavior: 'smooth', }); }; const t = useI18n(); const [, scrollTop] = useReadPercent(); if (scrollTop < 100) { return null; } return ( ); }