@fluent-windows/core
Version:
React components that inspired by Microsoft's Fluent Design System.
8 lines (7 loc) • 418 B
TypeScript
import * as React from 'react';
import { NavigationFooterProps } from '../Navigation.type';
declare const Footer: {
({ children }: NavigationFooterProps): React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>;
displayName: string;
};
export default Footer;