nexxtway/react-rainbow

View on GitHub
src/components/PhoneInput/flags/Spain.js

Summary

Maintainability
B
5 hrs
Test Coverage
import React from 'react';
import PropTypes from 'prop-types';

function SvgSpain({ className, style }) {
    return (
        <svg width={32} height={32} viewBox="0 0 32 32" className={className} style={style}>
            <g fillRule="nonzero" fill="none">
                <path
                    d="M0 16c0 1.957.352 3.832.995 5.565L16 22.956l15.005-1.39C31.648 19.831 32 17.956 32 16c0-1.957-.352-3.832-.995-5.565L16 9.043.995 10.435A15.966 15.966 0 000 16z"
                    fill="#FFDA44"
                />
                <g fill="#D80027">
                    <path d="M31.005 10.435C28.745 4.342 22.879 0 16 0 9.12 0 3.256 4.342.995 10.435h30.01zM.995 21.565C3.255 27.658 9.121 32 16 32c6.88 0 12.744-4.342 15.005-10.435H.995z" />
                </g>
            </g>
        </svg>
    );
}
SvgSpain.propTypes = {
    className: PropTypes.string,
    style: PropTypes.object,
};

SvgSpain.defaultProps = {
    className: undefined,
    style: undefined,
};

export default SvgSpain;