Row.d.ts 228 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 import * as React from 'react'; export interface FooterRowProps { children?: React.ReactNode; className?: string; style?: React.CSSProperties; } export default function FooterRow(props: FooterRowProps): JSX.Element;