fix: replace Outlined icon variants with filled equivalents for visual consistency

Replace DeleteOutline→Delete, CheckCircleOutline→CheckCircle, ErrorOutline→Error,
RemoveCircleOutline→RemoveCircle, InfoOutlined→Info across all dashboard components.
Replace custom SVG bar chart in OverviewClient with BarChartIcon.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
fuomag9
2026-02-27 15:25:19 +01:00
parent bfb6b2060f
commit 2096ebf1ed
4 changed files with 11 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
import { Box, Button, IconButton, Stack, TextField, Tooltip, Typography, Autocomplete, InputAdornment } from "@mui/material";
import AddIcon from "@mui/icons-material/Add";
import RemoveCircleOutlineIcon from "@mui/icons-material/RemoveCircleOutline";
import RemoveCircleIcon from "@mui/icons-material/RemoveCircle";
import { useState } from "react";
const PROTOCOL_OPTIONS = ["http://", "https://"];
@@ -115,7 +115,7 @@ export function UpstreamInput({
color="error"
sx={{ mt: 0.5 }}
>
<RemoveCircleOutlineIcon fontSize="small" />
<RemoveCircleIcon fontSize="small" />
</IconButton>
</span>
</Tooltip>