@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
24 lines (22 loc) • 747 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagSdn = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 1200 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 0h1200v600H0z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 0h1200v400H0z",
fill: "#fff"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 0h1200v200H0z",
fill: "#d21034"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 0l400 300L0 600z",
fill: "#007229"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagSdn);
export default ForwardRef;