@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
26 lines (25 loc) • 548 B
TypeScript
import React from "react";
interface FooterProps {
logo?: string;
title?: string;
navigation?: {
label: string;
path: string;
external?: boolean;
}[];
socialLinks?: {
icon: React.ReactNode;
url: string;
}[];
legalLinks?: {
label: string;
path: string;
external?: boolean;
}[];
compact?: boolean;
showCopyright?: boolean;
backgroundColor?: string;
as?: React.ElementType;
}
export declare const Footer: React.FC<FooterProps>;
export {};