Skip to content

Commit

Permalink
Took the plus sign off of the groups icon
Browse files Browse the repository at this point in the history
  • Loading branch information
crismali committed Feb 4, 2025
1 parent dd65a3b commit d6c74e8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions src/ui/Settings/Shared/Icons.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
import React, { FC } from 'react'

export const GroupsIcon: FC = () => {
return (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="20" fill="none" aria-hidden>
<g stroke="#000" strokeLinecap="round" strokeLinejoin="round" clipPath="url(#a)">
<path d="M17 19.04v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2M9 9.04a4 4 0 1 0 0-8.001 4 4 0 0 0 0 8ZM23 19.039v-2a4 4 0 0 0-3-3.87M16 1.169a4 4 0 0 1 0 7.75" />
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h24v20H0z" />
</clipPath>
</defs>
</svg>
)
}

export const GroupIcon: FC = () => {
return (
<svg aria-hidden xmlns="http://www.w3.org/2000/svg" width="31" height="24" fill="none">
<path
Expand Down
4 changes: 2 additions & 2 deletions src/ui/Settings/Shared/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Link } from 'gatsby'
import classNames from 'classnames'
import { useCurrentUser } from 'src/network/users'
import { LoadingOverlay } from '../../LoadingOverlay'
import { GroupsIcon, UsersIcon, EmailSettingsIcon } from './Icons'
import { GroupsIcon, UsersIcon, EmailSettingsIcon, GroupIcon } from './Icons'

export const Sidebar: FC = () => {
const { data: currentUser, isLoading, error } = useCurrentUser()
Expand All @@ -29,7 +29,7 @@ export const Sidebar: FC = () => {
to={`/settings/groups/${group.id}`}
label={group.name}
partiallyActive
icon={<GroupsIcon />}
icon={<GroupIcon />}
/>
))}
</SidebarList>
Expand Down

0 comments on commit d6c74e8

Please sign in to comment.