chat / client /src /components /Messages /ScrollToBottom.tsx
Zhitomir's picture
chat init
aa2e6af
Raw
History Blame Contribute Delete
818 Bytes
import React from 'react';
type Props = {
scrollHandler: React.MouseEventHandler<HTMLButtonElement>;
};
export default function ScrollToBottom({ scrollHandler }: Props) {
return (
<button
onClick={scrollHandler}
className="dark:bg-gray-850/90 absolute bottom-5 right-1/2 cursor-pointer rounded-full border border-gray-200 bg-white bg-clip-padding text-gray-600 dark:border-white/10 dark:text-gray-200"
>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
className="m-1 text-black dark:text-white"
>
<path
d="M17 13L12 18L7 13M12 6L12 17"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</svg>
</button>
);
}