@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 670 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagFin = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 1800 1100",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M0 0h1800v1100H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#003580",
d: "M0 400h1800v300H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#003580",
d: "M500 0h300v1100H500z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagFin);
export default ForwardRef;