@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
24 lines (23 loc) • 1.04 kB
TypeScript
import { SystemProps } from "../system/system.js";
import { VuiComponent } from "../core/vui.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";
//#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, FooterBase };
//# sourceMappingURL=footer.d.ts.map