UNPKG

@trove-ui/react

Version:

A React component library for T Design UI

7 lines (6 loc) 251 B
import { FC, HTMLAttributes } from 'react'; export interface FooterProps extends HTMLAttributes<HTMLElement> { height?: `${number}px` | `${number}rem` | `${number}em` | `${number}%`; } declare const Footer: FC<FooterProps>; export default Footer;