react-country-flags
Version:
Flags of the world as react components.
14 lines (11 loc) • 364 B
JavaScript
import React from 'react';
const FlagSc = props => (
<svg viewBox="0 0 900 450" {...props}>
<path d="M0 450h900V0H0z" fill="#d62828" />
<path d="M0 450V0h600z" fill="#fcd856" />
<path d="M0 450V0h300z" fill="#003f87" />
<path d="M0 450h900V150z" fill="#fff" />
<path d="M0 450h900V300z" fill="#007a3d" />
</svg>
);
export default FlagSc;