1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00

red restore button

This commit is contained in:
Fedor Katurov 2019-12-03 16:29:26 +07:00
parent b9ac33d881
commit 872e91b39b
3 changed files with 19 additions and 1 deletions

View file

@ -15,7 +15,13 @@ const CommendDeleted: FC<IProps> = ({ id, onDelete }) => {
return (
<div className={styles.wrap}>
<div>Комментарий удалён</div>
<Button size="mini" onClick={onRestore} iconLeft="restore">
<Button
size="mini"
onClick={onRestore}
color="link"
iconLeft="restore"
className={styles.button}
>
Восстановить
</Button>
</div>