UNPKG

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