@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
21 lines (19 loc) • 624 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagBwa = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 36 24",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#6DA9D2",
d: "M0 0h36v24H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M0 9h36v6H0z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 10h36v4H0z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagBwa);
export default ForwardRef;