@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
19 lines (17 loc) • 574 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagVnm = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 30 20",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#da251d",
d: "M0 0h30v20H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#ff0",
d: "M15 4l-3.53 10.85 9.24-6.7H9.29l9.24 6.7z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagVnm);
export default ForwardRef;