@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
19 lines (17 loc) • 555 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagLva = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 1200 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#9E3039",
d: "M0 0h1200v600H0"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#FFF",
d: "M0 240h1200v120H0"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagLva);
export default ForwardRef;