@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
25 lines (23 loc) • 767 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagMus = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 900 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#00a551",
d: "M0 0h900v600H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#ffd500",
d: "M0 0h900v450H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#1a206d",
d: "M0 0h900v300H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#ea2839",
d: "M0 0h900v150H0z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagMus);
export default ForwardRef;