@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 642 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagRus = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 9 6",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M0 0h9v3H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#d52b1e",
d: "M0 3h9v3H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#0039a6",
d: "M0 2h9v2H0z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagRus);
export default ForwardRef;