From 11d2c3036dd365ee9869b2569af6ff258873904e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Sodi=C4=87?= Date: Fri, 21 Feb 2025 21:19:55 +0100 Subject: [PATCH] Extract SVGs in FormElementsPage --- .../admin/elements/forms/FormElementsPage.tsx | 148 +++++++----------- 1 file changed, 60 insertions(+), 88 deletions(-) diff --git a/template/app/src/admin/elements/forms/FormElementsPage.tsx b/template/app/src/admin/elements/forms/FormElementsPage.tsx index 7eacad2..4676642 100644 --- a/template/app/src/admin/elements/forms/FormElementsPage.tsx +++ b/template/app/src/admin/elements/forms/FormElementsPage.tsx @@ -170,34 +170,7 @@ const FormElements = ({ user }: { user: AuthUser }) => {
- - - - - - - + - - - - - +
@@ -232,39 +190,13 @@ const FormElements = ({ user }: { user: AuthUser }) => { Design - - - + Development - - - + @@ -277,22 +209,7 @@ const FormElements = ({ user }: { user: AuthUser }) => { - - - - - + @@ -315,4 +232,59 @@ function SwitchExamples() { ); } +function GlobeIcon() { + return ( + + + + + + + + ); +} + +function ChevronDownIcon() { + return ( + + + + + + ); +} + +function XIcon() { + return ( + + + + ); +} + export default FormElements;