@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
26 lines (25 loc) • 1.1 kB
TypeScript
import { SystemProps } from "../system/system.js";
import { VuiComponent } from "../core/vui.js";
import "../core/index.js";
import { FooterProps } from "./footer.types.js";
import FooterColumn from "./footerColumn.js";
import { FooterContent } from "./footerContent.js";
import { FooterHeading } from "./footerHeading.js";
import { FooterLink } from "./footerLink.js";
import FooterRow from "./footerRow.js";
import { FooterSection } from "./footerSection.js";
import "../index.js";
//#region src/footer/footer.d.ts
declare const FooterBase: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, SystemProps, never>;
/** Branded Veracity Footer with trademark and links sections. Controls max-width of the content. */
declare const Footer: VuiComponent<'div', FooterProps> & {
Column: typeof FooterColumn;
Content: typeof FooterContent;
Heading: typeof FooterHeading;
Link: typeof FooterLink;
Row: typeof FooterRow;
Section: typeof FooterSection;
};
//#endregion
export { Footer, Footer as default, FooterBase };
//# sourceMappingURL=footer.d.ts.map