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