add DocumentPath icon

This commit is contained in:
Sidney Alcantara
2021-09-25 16:49:19 +10:00
parent 95c05c660c
commit c33a856a95
2 changed files with 12 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
import { mdiFileFindOutline } from "@mdi/js";
export default function DocumentPath(props: SvgIconProps) {
return (
<SvgIcon {...props}>
<path d={mdiFileFindOutline} />
</SvgIcon>
);
}

View File

@@ -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" ? <DebugIcon /> : getFieldProp("icon", type)}
{type === "debug" ? <DocumentPathIcon /> : getFieldProp("icon", type)}
<InputLabel
id={`sidedrawer-label-${name}`}
htmlFor={`sidedrawer-field-${name}`}