Skip to content

Commit

Permalink
Add teams tab icon
Browse files Browse the repository at this point in the history
  • Loading branch information
jaclarke committed Sep 1, 2023
1 parent 2dd3758 commit e71f970
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions shared/studio/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,41 @@ export function TabDataExplorerIcon(props: ActiveItem) {
);
}

export function TabTeamsIcon(props: ActiveItem) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M10 10C11.1046 10 12 9.10457 12 8C12 6.89543 11.1046 6 10 6C8.89543 6 8 6.89543 8 8C8 9.10457 8.89543 10 10 10ZM10 12C12.2091 12 14 10.2091 14 8C14 5.79086 12.2091 4 10 4C7.79086 4 6 5.79086 6 8C6 10.2091 7.79086 12 10 12Z"
fill={props.active ? activeColor1 : undefined}
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M4 17C4 14.7909 5.79086 13 8 13H12C14.2091 13 16 14.7909 16 17V19C16 19.5523 15.5523 20 15 20C14.4477 20 14 19.5523 14 19V17C14 15.8954 13.1046 15 12 15H8C6.89543 15 6 15.8954 6 17V19C6 19.5523 5.55228 20 5 20C4.44772 20 4 19.5523 4 19V17Z"
fill={props.active ? activeColor3 : undefined}
/>
<path
d="M17 13C16.4477 13 16 13.4477 16 14C16 14.5523 16.4477 15 17 15C17.2299 15 17.4219 15.0363 17.5599 15.0933C17.6893 15.1469 17.751 15.2086 17.7859 15.2674C17.9115 15.4789 18 15.7243 18 16V19C18 19.5523 18.4477 20 19 20C19.5523 20 20 19.5523 20 19V16C20 15.2803 19.766 14.6848 19.5057 14.2463C18.9071 13.2382 17.7886 13 17 13Z"
fill={props.active ? activeColor2 : undefined}
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M15.0572 4.83768C15.2412 4.31696 15.8125 4.04404 16.3332 4.22809C17.8855 4.77673 19 6.25703 19 8.00022C19 9.74341 17.8855 11.2237 16.3332 11.7724C15.8125 11.9564 15.2412 11.6835 15.0572 11.1628C14.8731 10.642 15.146 10.0707 15.6668 9.88668C16.4449 9.61164 17 8.86947 17 8.00022C17 7.13097 16.4449 6.3888 15.6668 6.11377C15.146 5.92972 14.8731 5.3584 15.0572 4.83768Z"
fill={props.active ? activeColor2 : undefined}
/>
</svg>
);
}

export function TabGraphQlIcon(props: ActiveItem) {
return (
<svg
Expand Down

0 comments on commit e71f970

Please sign in to comment.