react-country-flags
Version:
Flags of the world as react components.
14 lines (11 loc) • 384 B
JavaScript
import React from 'react';
const FlagGy = props => (
<svg viewBox="0 0 500 300" {...props}>
<path fill="#009e49" d="M0 0h500v300H0z" />
<path d="M0 0l500 150L0 300z" fill="#fff" />
<path d="M0 13.05L456 150 0 286.95z" fill="#fcd116" />
<path d="M0 0l250 150L0 300z" />
<path d="M0 17.5L220.85 150 0 282.5z" fill="#ce1126" />
</svg>
);
export default FlagGy;