mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-28 17:55:15 +02:00
feat: add all outlined icons (#8332)

This commit is contained in:
parent
3341d4aee9
commit
a71fafeb13
@ -1,9 +1,10 @@
|
|||||||
import { IconButton, styled, Tooltip, Typography } from '@mui/material';
|
import { IconButton, styled, Tooltip, Typography } from '@mui/material';
|
||||||
import CloseIcon from '@mui/icons-material/Close';
|
import CloseIcon from '@mui/icons-material/Close';
|
||||||
import Check from '@mui/icons-material/Check';
|
import Check from '@mui/icons-material/Check';
|
||||||
import People from '@mui/icons-material/People';
|
|
||||||
import MenuBook from '@mui/icons-material/MenuBook';
|
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
|
import ExtensionOutlined from '@mui/icons-material/ExtensionOutlined';
|
||||||
|
import MenuBookOutlined from '@mui/icons-material/MenuBookOutlined';
|
||||||
|
import PeopleOutlined from '@mui/icons-material/PeopleOutlined';
|
||||||
|
|
||||||
interface IProjectOnboardedProps {
|
interface IProjectOnboardedProps {
|
||||||
projectId: string;
|
projectId: string;
|
||||||
@ -66,11 +67,15 @@ const StyledCheck = styled(Check)(({ theme }) => ({
|
|||||||
height: '28px',
|
height: '28px',
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const ColoredPeople = styled(People)(({ theme }) => ({
|
const ColoredExtension = styled(ExtensionOutlined)(({ theme }) => ({
|
||||||
color: theme.palette.primary.main,
|
color: theme.palette.primary.main,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const ColoredMenuBook = styled(MenuBook)(({ theme }) => ({
|
const ColoredPeople = styled(PeopleOutlined)(({ theme }) => ({
|
||||||
|
color: theme.palette.primary.main,
|
||||||
|
}));
|
||||||
|
|
||||||
|
const ColoredMenuBook = styled(MenuBookOutlined)(({ theme }) => ({
|
||||||
color: theme.palette.primary.main,
|
color: theme.palette.primary.main,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
@ -96,6 +101,7 @@ export const ProjectOnboarded = ({
|
|||||||
<Actions>
|
<Actions>
|
||||||
<ActionBox>
|
<ActionBox>
|
||||||
<TitleContainer>
|
<TitleContainer>
|
||||||
|
<ColoredExtension />
|
||||||
Expose your feature flag to users
|
Expose your feature flag to users
|
||||||
</TitleContainer>
|
</TitleContainer>
|
||||||
<Typography>
|
<Typography>
|
||||||
|
Loading…
Reference in New Issue
Block a user