Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7c0e749298 |
@@ -7,6 +7,7 @@ import { cls } from "@/lib/utils";
|
|||||||
import type { LucideIcon } from "lucide-react";
|
import type { LucideIcon } from "lucide-react";
|
||||||
import type { ButtonConfig, GridVariant, CardAnimationType, TitleSegment } from "@/components/cardStack/types";
|
import type { ButtonConfig, GridVariant, CardAnimationType, TitleSegment } from "@/components/cardStack/types";
|
||||||
import type { TextboxLayout, InvertedBackground } from "@/providers/themeProvider/config/constants";
|
import type { TextboxLayout, InvertedBackground } from "@/providers/themeProvider/config/constants";
|
||||||
|
import { User } from "lucide-react"; // Import the User icon from lucide-react
|
||||||
|
|
||||||
type TeamCardTwoGridVariant = Exclude<GridVariant, "timeline">;
|
type TeamCardTwoGridVariant = Exclude<GridVariant, "timeline">;
|
||||||
|
|
||||||
@@ -211,6 +212,7 @@ const TeamCardTwo = ({
|
|||||||
buttonTextClassName={textBoxButtonTextClassName}
|
buttonTextClassName={textBoxButtonTextClassName}
|
||||||
ariaLabel={ariaLabel}
|
ariaLabel={ariaLabel}
|
||||||
>
|
>
|
||||||
|
<User className="h-6 w-6 text-foreground mr-2" /> {/* Inserted the User icon element */}
|
||||||
{members.map((member, index) => (
|
{members.map((member, index) => (
|
||||||
<TeamMemberCard
|
<TeamMemberCard
|
||||||
key={`${member.id}-${index}`}
|
key={`${member.id}-${index}`}
|
||||||
|
|||||||
Reference in New Issue
Block a user