Browse Source
Замінити іконку повного видалення задач. Добавити туттіп для іконки відправки сповіщеня. Замінити label для іпута Reviewed-on: #13 Co-authored-by: Yevhen Romanenko <yevhen.romanenko.jetup@gmail.com> Co-committed-by: Yevhen Romanenko <yevhen.romanenko.jetup@gmail.com>pull/14/head
4 changed files with 12 additions and 14 deletions
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.3 KiB |
@ -1,14 +1,17 @@
@@ -1,14 +1,17 @@
|
||||
import React, { FC } from "react"; |
||||
import styles from "./styles.module.css"; |
||||
import bellSvg from "@/assets/img/Bell.svg"; |
||||
import { Tooltip } from "antd"; |
||||
|
||||
interface IProps { |
||||
onClick: () => void; |
||||
} |
||||
export const ButtonAtom: FC<IProps> = ({ onClick }) => { |
||||
return ( |
||||
<button className={styles.button} onClick={onClick}> |
||||
<img src={bellSvg} alt="bell" /> |
||||
</button> |
||||
<Tooltip title={"Створити сповіщення"} key={"notification"}> |
||||
<button className={styles.button} onClick={onClick}> |
||||
<img src={bellSvg} alt="bell" /> |
||||
</button> |
||||
</Tooltip> |
||||
); |
||||
}; |
||||
|
Loading…
Reference in new issue