Repository URL to install this package:
|
Version:
0.0.14 ▾
|
import * as React from 'react';
import { NO_OP } from 'exotic';
import { TopBarLocaleProps } from './typings';
/**
* @name TopBarLocale
* ========= ============ ===============
* || flag || || Country || || (Language) ||
* ========= ============ ===============
*/
declare class LocaleFlagButton extends React.PureComponent<TopBarLocaleProps> {
static defaultProps: {
currency: string;
humanized: string;
onClick: typeof NO_OP;
name: string;
country: string;
};
render(): JSX.Element;
}
export { LocaleFlagButton };