Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add all outlined icons #8332

Merged
merged 2 commits into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions frontend/src/component/onboarding/flow/ProjectOnboarded.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { IconButton, styled, Tooltip, Typography } from '@mui/material';
import CloseIcon from '@mui/icons-material/Close';
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 ExtensionOutlined from '@mui/icons-material/ExtensionOutlined';
import MenuBookOutlined from '@mui/icons-material/MenuBookOutlined';
import PeopleOutlined from '@mui/icons-material/PeopleOutlined';

interface IProjectOnboardedProps {
projectId: string;
Expand Down Expand Up @@ -66,11 +67,15 @@ const StyledCheck = styled(Check)(({ theme }) => ({
height: '28px',
}));

const ColoredPeople = styled(People)(({ theme }) => ({
const ColoredExtension = styled(ExtensionOutlined)(({ theme }) => ({
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,
}));

Expand All @@ -96,6 +101,7 @@ export const ProjectOnboarded = ({
<Actions>
<ActionBox>
<TitleContainer>
<ColoredExtension />
Expose your feature flag to users
</TitleContainer>
<Typography>
Expand Down
Loading