mirror of
https://github.com/owncast/owncast.git
synced 2024-11-29 19:49:31 +03:00
15 lines
366 B
TypeScript
15 lines
366 B
TypeScript
import { Button } from 'antd';
|
|
import { BellFilled } from '@ant-design/icons';
|
|
import s from './ActionButton.module.scss';
|
|
|
|
interface Props {
|
|
onClick: () => void;
|
|
}
|
|
|
|
export default function NotifyButton({ onClick }: Props) {
|
|
return (
|
|
<Button type="primary" className={`${s.button}`} icon={<BellFilled />} onClick={onClick}>
|
|
Notify
|
|
</Button>
|
|
);
|
|
}
|