Merge version_2 into main #4
@@ -39,7 +39,7 @@ interface TeamCardFiveFlipProps {
|
||||
textboxLayout: "default" | "centered" | "compact";
|
||||
useInvertedBackground: boolean;
|
||||
tag?: string;
|
||||
tagIcon?: React.ReactNode;
|
||||
tagIcon?: LucideIcon;
|
||||
tagAnimation?: "none" | "opacity" | "slide-up" | "blur-reveal";
|
||||
buttons?: Button[];
|
||||
buttonAnimation?: "none" | "opacity" | "slide-up" | "blur-reveal";
|
||||
@@ -174,7 +174,7 @@ const TeamCardFiveFlip: React.FC<TeamCardFiveFlipProps> = ({
|
||||
{member.socialLinks && member.socialLinks.length > 0 ? (
|
||||
<div className="flex gap-4 justify-center">
|
||||
{member.socialLinks.map((social, idx) => {
|
||||
const Icon = social.icon;
|
||||
const Icon = social.icon as React.ComponentType<{ size: number }> ;
|
||||
return (
|
||||
<a
|
||||
key={idx}
|
||||
|
||||
Reference in New Issue
Block a user