mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
15 lines
460 B
TypeScript
15 lines
460 B
TypeScript
import { Button } from 'antd';
|
|
import { BellFilled } from '@ant-design/icons';
|
|
import { FC } from 'react';
|
|
import styles from './ActionButton/ActionButton.module.scss';
|
|
|
|
export type NotifyButtonProps = {
|
|
text?: string;
|
|
onClick?: () => void;
|
|
};
|
|
|
|
export const NotifyButton: FC<NotifyButtonProps> = ({ onClick, text }) => (
|
|
<Button type="primary" className={`${styles.button}`} icon={<BellFilled />} onClick={onClick}>
|
|
{text || 'Notify'}
|
|
</Button>
|
|
);
|