@dabapps/roe
Version:
A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.
15 lines (14 loc) • 527 B
TypeScript
import * as React from 'react';
import { OptionalComponentPropAndHTMLAttributes } from '../../types';
export declare type FooterProps = {
/**
* Fix the footer to the bottom of the window when there is not enough content to push it down.
*/
sticky?: boolean;
/**
* Fix the footer to the bottom of the screen always
*/
fixed?: boolean;
} & OptionalComponentPropAndHTMLAttributes;
declare const _default: React.MemoExoticComponent<(props: FooterProps) => JSX.Element>;
export default _default;