From 7dca1d89535831f0a7c2e6aa2dc8c2785e504a1e Mon Sep 17 00:00:00 2001 From: Sidney Alcantara Date: Wed, 10 Nov 2021 23:13:20 +1100 Subject: [PATCH] KeyValueInput style updates --- src/components/KeyValueInput.tsx | 40 +++++++++++++++----------------- 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/src/components/KeyValueInput.tsx b/src/components/KeyValueInput.tsx index cb6b7c3c..da043790 100644 --- a/src/components/KeyValueInput.tsx +++ b/src/components/KeyValueInput.tsx @@ -6,7 +6,6 @@ import { FormGroup, Stack, TextField, - ButtonGroup, Button, } from "@mui/material"; import AddIcon from "@mui/icons-material/Add"; @@ -67,13 +66,14 @@ export default function KeyValueInput({ }); return ( - + {label} + {value.map(([propKey, propValue], i) => ( - - - + ))} -
- -
+ +
); }