@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
21 lines (19 loc) • 644 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagBhs = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 600 300",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#00778B",
d: "M0 0h600v300H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#FFC72C",
d: "M0 100h600v100H0z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 0v300l259.808-150z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagBhs);
export default ForwardRef;