UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library. Compatible with React ^19.

17 lines (16 loc) 651 B
import type { ComponentPropsWithRef, ElementType } from 'react'; export type FooterProperties<ET extends ElementType = 'footer'> = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef<ET>; /** * Content anchored at the bottom of a page to provide important information or links. * @docs {@link https://design.visa.com/components/footer/?code_library=react | See Docs} * @vgar TODO * @wcag TODO */ declare const Footer: { <ET extends ElementType = "footer">({ className, tag: Tag, ...remainingProps }: FooterProperties<ET>): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Footer;