Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/packages / features / Locale / LocaleModalTrigger / LocaleFlagButton.d.ts
Size: Mime:
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 };