Skip to content

Commit

Permalink
refactor: Remove + icon from list contributors stacked avatar (#1851)
Browse files Browse the repository at this point in the history
Co-authored-by: OGBONNA SUNDAY <[email protected]>
  • Loading branch information
5hraddha and OgDev-01 authored Oct 10, 2023
1 parent b2a137d commit 264f0dd
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions components/molecules/ListCard/list-card.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import React from "react";
import Link from "next/link";
import { MdOutlineArrowForwardIos } from "react-icons/md";
import { FiPlus } from "react-icons/fi";
import { RiDeleteBinLine } from "react-icons/ri";
import Text from "components/atoms/Typography/text";
import Tooltip from "components/atoms/Tooltip/tooltip";
import { useFetchListContributors } from "lib/hooks/useList";
import StackedAvatar, { Contributor } from "../StackedAvatar/stacked-avatar";

Expand Down Expand Up @@ -41,16 +39,6 @@ const ListCard = ({ list, handleOnDeleteClick }: ListCardProps) => {

<div className="flex items-center">
<StackedAvatar contributors={contributorsAvatar} visibleQuantity={6} classNames="scale-125" />
<Tooltip content="Add more contributors">
<button
className="z-50 w-8 h-8 overflow-hidden scale-110 bg-white border-2 border-white rounded-full"
type="button"
>
<span className="grid w-full h-full place-items-center bg-purple-200/50">
<FiPlus className="p-0.5 text-purple-600" />
</span>
</button>
</Tooltip>
</div>
<div className="justify-end flex-1 hidden md:flex">
{/* Delete button */}
Expand Down

0 comments on commit 264f0dd

Please sign in to comment.