mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
30 lines
653 B
TypeScript
30 lines
653 B
TypeScript
import { Button } from 'antd';
|
|
import dynamic from 'next/dynamic';
|
|
import { FC } from 'react';
|
|
import styles from './ChatContainer.module.scss';
|
|
|
|
// Lazy loaded components
|
|
|
|
const VerticalAlignBottomOutlined = dynamic(
|
|
() => import('@ant-design/icons/VerticalAlignBottomOutlined'),
|
|
{
|
|
ssr: false,
|
|
},
|
|
);
|
|
|
|
type Props = {
|
|
onClick: () => void;
|
|
};
|
|
|
|
export const ScrollToBotBtn: FC<Props> = ({ onClick }) => (
|
|
<div className={styles.toBottomWrap}>
|
|
<Button
|
|
type="default"
|
|
style={{ color: 'currentColor' }}
|
|
icon={<VerticalAlignBottomOutlined />}
|
|
onClick={onClick}
|
|
>
|
|
Go to last message
|
|
</Button>
|
|
</div>
|
|
);
|