react-country-flags
Version:
Flags of the world as react components.
12 lines (9 loc) • 321 B
JavaScript
import React from 'react';
const FlagGf = props => (
<svg viewBox="0 0 900 600" {...props}>
<path fill="#078930" d="M0 0h900v600z" />
<path fill="#FCDD09" d="M0 0l900 600H0z" />
<path fill="#DA121A" d="M450 200l58.779 180.902-153.885-111.804h190.212L391.22 380.902z" />
</svg>
);
export default FlagGf;