🎨 Improve design of tab icons

This commit is contained in:
Manuel Ruwe
2022-12-11 21:01:13 +01:00
parent 50df42cc14
commit 9211609a7b

View File

@@ -104,7 +104,12 @@ export const EditServiceModal = ({
const relevantErrors = validationErrors.filter((x) => keys.includes(x));
return (
<ThemeIcon opacity={relevantErrors.length === 0 ? 0 : 1} color="red" variant="light">
<ThemeIcon
opacity={relevantErrors.length === 0 ? 0 : 1}
color="red"
size={18}
variant="light"
>
<IconAlertTriangle size={15} />
</ThemeIcon>
);