UNPKG

rc-table

Version:
9 lines (8 loc) 310 B
import * as React from 'react'; export interface FooterRowProps { children?: React.ReactNode; className?: string; style?: React.CSSProperties; onClick?: (e?: React.MouseEvent<HTMLElement>) => void; } export default function FooterRow({ children, ...props }: FooterRowProps): React.JSX.Element;