@wfp/ui
Version:
WFP UI Kit
14 lines (11 loc) • 342 B
TypeScript
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