UNPKG

310 BTypeScriptView Raw
1import * as React from 'react';
2export interface FooterRowProps {
3 children?: React.ReactNode;
4 className?: string;
5 style?: React.CSSProperties;
6 onClick?: (e?: React.MouseEvent<HTMLElement>) => void;
7}
8export default function FooterRow({ children, ...props }: FooterRowProps): React.JSX.Element;