@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
24 lines (22 loc) • 727 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagKwt = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 12 6",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#007a3d",
d: "M0 0h12v6H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M0 2h12v4H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#ce1126",
d: "M0 4h12v2H0z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 0l3 2v2L0 6z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagKwt);
export default ForwardRef;