@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
19 lines (17 loc) • 563 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagSwe = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 16 10",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#006aa7",
d: "M0 0h16v10H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#fecc00",
d: "M0 4h5V0h2v4h9v2H7v4H5V6H0z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagSwe);
export default ForwardRef;