File size: 464 Bytes
246d201 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import ArrowSendIcon from "#/icons/arrow-send.svg?react";
interface ScrollToBottomButtonProps {
onClick: () => void;
}
export function ScrollToBottomButton({ onClick }: ScrollToBottomButtonProps) {
return (
<button
type="button"
onClick={onClick}
data-testid="scroll-to-bottom"
className="button-base p-1 hover:bg-neutral-500 rotate-180"
>
<ArrowSendIcon width={15} height={15} />
</button>
);
}
|