@visa/nova-react
Version:
Visa Product Design System Nova React library
19 lines (18 loc) • 752 B
TypeScript
import { ElementType, ForwardedRef } from 'react';
export type FooterProperties = {
/** @ignore */
className?: string;
/** Tag of Component */
tag?: ElementType;
};
/**
* Content anchored at the bottom of a page to provide important information or links.
* @docs {@link https://design.visa.com/react/components/footer | See Docs}
* @vgar TODO
* @wcag TODO
*/
declare const _default: <HTMLElementType = HTMLElement>(props: {
children?: import("react").ReactNode | import("react").ReactNode[];
ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & FooterProperties) => import("react").ReactElement;
export default _default;