mirror of
https://github.com/vercel/components.build.git
synced 2026-09-14 20:06:39 +08:00
101ca62c2d
* Initial implementation * Bump deps * Update code-block.tsx * Update navbar.tsx * Move video to Geistdocs * Update layout.tsx * Margin fixes * Update code-block-tabs.tsx * Update docs-page.tsx * Update navbar.tsx * Add feed * Update docs-layout.tsx * Update mobile-menu.tsx * Fix adaptable layout * Update docs-page.tsx * Update docs page composability * Update global.css * Remove unused AI Elements * Update Feedback
22 lines
549 B
TypeScript
22 lines
549 B
TypeScript
"use client";
|
|
|
|
import { ArrowUpCircleIcon } from "lucide-react";
|
|
import { useCallback } from "react";
|
|
|
|
export const ScrollTop = () => {
|
|
const handleScrollToTop = useCallback(() => {
|
|
window.scrollTo({ top: 0, behavior: "smooth" });
|
|
}, []);
|
|
|
|
return (
|
|
<button
|
|
className="flex items-center gap-1.5 text-muted-foreground text-sm transition-colors hover:text-foreground"
|
|
onClick={handleScrollToTop}
|
|
type="button"
|
|
>
|
|
<ArrowUpCircleIcon className="size-3.5" />
|
|
<span>Scroll to top</span>
|
|
</button>
|
|
);
|
|
};
|