Row.d.ts 228 Bytes
import * as React from 'react';
export interface FooterRowProps {
    children?: React.ReactNode;
    className?: string;
    style?: React.CSSProperties;
}
export default function FooterRow(props: FooterRowProps): JSX.Element;