You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
379 B
15 lines
379 B
import { Button } from 'antd'; |
|
import { BellFilled } from '@ant-design/icons'; |
|
import s from './ActionButton/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> |
|
); |
|
}
|
|
|