UNPKG

react-vite-themes

Version:

A test/experimental React theme system created for learning purposes. Features atomic design components, SCSS variables, and dark/light theme support. Not intended for production use.

24 lines 603 B
import React from 'react'; import './Footer.scss'; export interface FooterLink { label: string; href: string; external?: boolean; } export interface FooterSection { title: string; links: FooterLink[]; } export interface FooterProps { sections?: FooterSection[]; companyName?: string; companyDescription?: string; socialLinks?: FooterLink[]; copyrightText?: string; className?: string; showBackToTop?: boolean; container?: boolean; onBackToTop?: () => void; } export declare const Footer: React.FC<FooterProps>; //# sourceMappingURL=Footer.d.ts.map