| 123456789101112131415161718192021222324252627282930313233343536373839 | import PropTypes from 'prop-types';
import React, { Component } from 'react';
/**
 * Implements a React {@link Component} to render a country flag icon.
 */
export default class CountryIcon extends Component {
    /**
     * {@code CountryIcon}'s property types.
     *
     * @static
     */
    static propTypes = {
        /**
         * The css style class name.
         */
        className: PropTypes.string,
        /**
         * The 2-letter country code.
         */
        countryCode: PropTypes.string
    };
    /**
     * Implements React's {@link Component#render()}.
     *
     * @inheritdoc
     * @returns {ReactElement}
     */
    render() {
        const iconClassName
            = `flag-icon flag-icon-${
                this.props.countryCode} flag-icon-squared ${
                this.props.className}`;
        return <span className = { iconClassName } />;
    }
}
 |