diff --git a/src/assets/icons/DocumentPath.tsx b/src/assets/icons/DocumentPath.tsx new file mode 100644 index 00000000..215a46b3 --- /dev/null +++ b/src/assets/icons/DocumentPath.tsx @@ -0,0 +1,10 @@ +import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon"; +import { mdiFileFindOutline } from "@mdi/js"; + +export default function DocumentPath(props: SvgIconProps) { + return ( + + + + ); +} diff --git a/src/components/SideDrawer/Form/FieldWrapper.tsx b/src/components/SideDrawer/Form/FieldWrapper.tsx index 736df831..e113fb3b 100644 --- a/src/components/SideDrawer/Form/FieldWrapper.tsx +++ b/src/components/SideDrawer/Form/FieldWrapper.tsx @@ -1,7 +1,7 @@ import { Suspense } from "react"; import { Stack, InputLabel, Typography, IconButton } from "@mui/material"; -import DebugIcon from "@mui/icons-material/BugReportOutlined"; +import DocumentPathIcon from "assets/icons/DocumentPath"; import LaunchIcon from "@mui/icons-material/Launch"; import LockIcon from "@mui/icons-material/LockOutlined"; @@ -46,7 +46,7 @@ export default function FieldWrapper({ }, }} > - {type === "debug" ? : getFieldProp("icon", type)} + {type === "debug" ? : getFieldProp("icon", type)}