We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5415c5 commit 8db1da0Copy full SHA for 8db1da0
site/src/pages/ManagementSettingsPage/CustomRolesPage/CustomRolesPage.tsx
@@ -1,4 +1,4 @@
1
-import GroupAdd from "@mui/icons-material/GroupAddOutlined";
+import AddIcon from "@mui/icons-material/AddOutlined";
2
import Button from "@mui/material/Button";
3
import { type FC, useEffect } from "react";
4
import { Helmet } from "react-helmet-async";
@@ -47,7 +47,7 @@ export const CustomRolesPage: FC = () => {
47
{canAssignOrgRole && isCustomRolesEnabled && (
48
<Button
49
component={RouterLink}
50
- startIcon={<GroupAdd />}
+ startIcon={<AddIcon />}
51
to="create"
52
>
53
Create custom role
0 commit comments