From d46794fc17eab47e669e04ea1d765f0ff9bdb04c Mon Sep 17 00:00:00 2001 From: Imbus Date: Tue, 14 Nov 2023 02:25:56 +0100 Subject: [PATCH] Formatting and hamburger icon --- client-solid/src/Icons.tsx | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/client-solid/src/Icons.tsx b/client-solid/src/Icons.tsx index 851b47c..9e9995e 100644 --- a/client-solid/src/Icons.tsx +++ b/client-solid/src/Icons.tsx @@ -13,7 +13,8 @@ export function Arrow(): JSXElement { + d="M17.25 8.25L21 12m0 0l-3.75 3.75M21 12H3" + /> ); } @@ -21,3 +22,23 @@ export function Arrow(): JSXElement { export function loadSpinner(): JSXElement { return ; } + +// Hamburger menu icon +export function Bars(): JSXElement { + return ( + + + + ); +}