UNPKG

@wfp/ui

Version:
14 lines (11 loc) 342 B
import * as React from 'react'; import { ScreenSize } from './utils'; declare namespace InfoBar { interface InfoBarProps extends React.HTMLProps<InfoBar> { children: React.ReactNode pageWidth?: ScreenSize wrapperClassName?: string } } declare class InfoBar extends React.Component<InfoBar.InfoBarProps>{ } export = InfoBar