@coreui/react
Version:
UI Components Library for React.js
13 lines (12 loc) • 444 B
TypeScript
import React, { HTMLAttributes } from 'react';
export interface CFooterProps extends HTMLAttributes<HTMLDivElement> {
/**
* A string of all className you want applied to the base component.
*/
className?: string;
/**
* Place footer in non-static positions.
*/
position?: 'fixed' | 'sticky';
}
export declare const CFooter: React.ForwardRefExoticComponent<CFooterProps & React.RefAttributes<HTMLDivElement>>;