'use client'; import * as React from 'react'; import { cn } from '@/lib/utils'; import { useAtBottom } from '@/lib/hooks/useAtBottom'; import { Button, type ButtonProps } from '@/components/ui/Button'; import { IconArrowDown } from '@/components/ui/Icons'; export function ButtonScrollToBottom({ className, ...props }: ButtonProps) { const isAtBottom = useAtBottom(); return ( ); }