Minor styling changes

This commit is contained in:
t1enne
2022-07-10 08:56:31 +02:00
parent efbe6907ac
commit f130abb8f9
9 changed files with 61 additions and 43 deletions

View File

@ -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>
);