From bca84fc6a90bda60a0deeb726ac7e8148045b58c Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Wed, 3 Aug 2022 23:24:51 -0500 Subject: [PATCH] shape icons --- squarenotsquare/src/themes/Icons.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/squarenotsquare/src/themes/Icons.js b/squarenotsquare/src/themes/Icons.js index 1e20525..9f67027 100644 --- a/squarenotsquare/src/themes/Icons.js +++ b/squarenotsquare/src/themes/Icons.js @@ -3,8 +3,17 @@ class AppIcons { square: 'square', settings: 'cog-outline', toggleOn: 'toggle-switch-on', - toggleOfff: 'toggle-switch-off' + toggleOfff: 'toggle-switch-off', }; + + wrongShapes = { + rectangle: 'rectangle', + triangle: 'triangle', + circle: 'circle', + hexagon: 'hexagon', + pentagon: 'pentagon', + octagon: 'octagon' + } } const Icons = new AppIcons();