export interface TdFooterProps {
links?: Array<LinkObj>;
logo?: FooterLogo;
text?: string;
}
export interface LinkObj {
name: string;
url?: string;
target?: string;
}
export interface FooterLogo {
icon: string;
title?: string;
url?: string;
target?: string;
}