From 7246050c06666769a8bd2b9c857ae5ce1288d582 Mon Sep 17 00:00:00 2001 From: Imbus Date: Wed, 15 Nov 2023 11:17:18 +0100 Subject: [PATCH] Icons for thumbs up/down --- client-solid/src/Icons.tsx | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/client-solid/src/Icons.tsx b/client-solid/src/Icons.tsx index b7195da..be7549b 100644 --- a/client-solid/src/Icons.tsx +++ b/client-solid/src/Icons.tsx @@ -115,3 +115,40 @@ export function Home(): JSXElement { ); } + +export function ThumbUp(): JSXElement { + return ( + + + + ); +} +export function ThumbDown(): JSXElement { + return ( + + + + ); +}