@violetprotocol/nudge-components
Version:
Components for Nudge's websites and applications.
19 lines (18 loc) • 498 B
TypeScript
import React, { ElementType } from "react";
/**
* This footer is used for the Score App and the Landing App - the Main App has a different footer
*/
type ScoreAppFooterProps = {
links: {
title: string;
href: string;
}[];
LinkComponent: ElementType;
ImageComponent: ElementType;
withCtaButton?: boolean;
onCtaClick?: () => void;
ctaText?: string;
className?: string;
};
export declare const ScoreAppFooter: React.FC<ScoreAppFooterProps>;
export {};