Files
Hayden Bleasel 30cbcfec97 Migrate to Oxlint (#357)
* Migrate to oxlint / oxfmt

* Initial fixes

* Misc fixes

* Temporary fixes

* Update Ultracite

* Update .oxlintrc.json

* Update .oxlintrc.json

* Start running manual fixes

* Update .oxlintrc.json

* AI Fixes Part 2

* AI Fixes Part 3

* AI Fixes Part 4

* AI Fixes Part 5

* AI Fixes Part 6

* AI Fixes Part 7

* AI Fixes Part 8

* AI Fixes Part 9

* AI Fixes Part 10

* AI Fixes Part 11

* AI Fixes Part 12

* Fix tests

* Lint / test fixes

* Update chat.tsx

* Fix AI SDK React version

* Misc fixes

* Build fixes
2026-02-04 08:00:41 -08:00

22 lines
549 B
TypeScript

"use client";
import { ArrowUpCircleIcon } from "lucide-react";
import { useCallback } from "react";
export const ScrollTop = () => {
const handleScrollToTop = useCallback(() => {
window.scrollTo({ behavior: "smooth", top: 0 });
}, []);
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>
);
};