diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-09-26 20:47:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 21:47:12 +0200 |
commit | 837d1fc08334f569da8fe332ee72ef8c8560d9ef (patch) | |
tree | ea7e55e23874f5822076a2ae3bfad7d44eb9ce86 /src/plugins/reviewDB | |
parent | 608a67c9ae4eea61bc532398ed615a4984db2ffc (diff) | |
download | Vencord-837d1fc08334f569da8fe332ee72ef8c8560d9ef.tar.gz Vencord-837d1fc08334f569da8fe332ee72ef8c8560d9ef.tar.bz2 Vencord-837d1fc08334f569da8fe332ee72ef8c8560d9ef.zip |
web: fix themes tab (#1756)
Diffstat (limited to 'src/plugins/reviewDB')
-rw-r--r-- | src/plugins/reviewDB/components/MessageButton.tsx | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/plugins/reviewDB/components/MessageButton.tsx b/src/plugins/reviewDB/components/MessageButton.tsx index 176f4d6..965fd1c 100644 --- a/src/plugins/reviewDB/components/MessageButton.tsx +++ b/src/plugins/reviewDB/components/MessageButton.tsx @@ -16,6 +16,7 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ +import { DeleteIcon } from "@components/Icons"; import { classes } from "@utils/misc"; import { findByPropsLazy } from "@webpack"; import { Tooltip } from "@webpack/common"; @@ -31,10 +32,7 @@ export function DeleteButton({ onClick }: { onClick(): void; }) { className={classes(iconClasses.button, iconClasses.dangerous)} onClick={onClick} > - <svg width="16" height="16" viewBox="0 0 20 20"> - <path fill="currentColor" d="M15 3.999V2H9V3.999H3V5.999H21V3.999H15Z" /> - <path fill="currentColor" d="M5 6.99902V18.999C5 20.101 5.897 20.999 7 20.999H17C18.103 20.999 19 20.101 19 18.999V6.99902H5ZM11 17H9V11H11V17ZM15 17H13V11H15V17Z" /> - </svg> + <DeleteIcon width="20" height="20" /> </div> )} </Tooltip> @@ -50,8 +48,11 @@ export function ReportButton({ onClick }: { onClick(): void; }) { className={iconClasses.button} onClick={onClick} > - <svg width="16" height="16" viewBox="0 0 20 20"> - <path fill="currentColor" d="M20,6.002H14V3.002C14,2.45 13.553,2.002 13,2.002H4C3.447,2.002 3,2.45 3,3.002V22.002H5V14.002H10.586L8.293,16.295C8.007,16.581 7.922,17.011 8.076,17.385C8.23,17.759 8.596,18.002 9,18.002H20C20.553,18.002 21,17.554 21,17.002V7.002C21,6.45 20.553,6.002 20,6.002Z" /> + <svg width="20" height="20" viewBox="0 0 24 24"> + <path + fill="currentColor" + d="M20,6.002H14V3.002C14,2.45 13.553,2.002 13,2.002H4C3.447,2.002 3,2.45 3,3.002V22.002H5V14.002H10.586L8.293,16.295C8.007,16.581 7.922,17.011 8.076,17.385C8.23,17.759 8.596,18.002 9,18.002H20C20.553,18.002 21,17.554 21,17.002V7.002C21,6.45 20.553,6.002 20,6.002Z" + /> </svg> </div> )} |