mirror of
https://github.com/owncast/owncast.git
synced 2025-11-02 03:54:54 +08:00
Minor styling changes
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import { Button } from 'antd';
|
||||
import { NotificationFilled } from '@ant-design/icons';
|
||||
import { BellFilled } from '@ant-design/icons';
|
||||
import s from './ActionButton.module.scss';
|
||||
|
||||
interface Props {
|
||||
@ -8,12 +8,7 @@ interface Props {
|
||||
|
||||
export default function NotifyButton({ onClick }: Props) {
|
||||
return (
|
||||
<Button
|
||||
type="primary"
|
||||
className={`${s.button}`}
|
||||
icon={<NotificationFilled />}
|
||||
onClick={onClick}
|
||||
>
|
||||
<Button type="primary" className={`${s.button}`} icon={<BellFilled />} onClick={onClick}>
|
||||
Notify
|
||||
</Button>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user