Skip to main content

InfoCard

const InfoCard: React.FC<{
imageUrl?: string;
logoUrl?: ImageSrc;
imageContent?: React.ReactElement;
headerText?: string;
bodyContent?: React.ReactNode;
orientation?: InfoCardOrientation;
width?: InfoCardWidth;
animate?: {
shouldAnimate: boolean;
onAnimateComplete: () => void;
};
type: InfoCardType;
brandName?: string;
}>;