@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
19 lines (17 loc) • 624 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagBhr = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 1500 900",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 0h1500v900H0",
fill: "#fff"
}), /*#__PURE__*/ React.createElement("path", {
d: "M1500 0H375l225 90-225 90 225 90-225 90 225 90-225 90 225 90-225 90 225 90-225 90h1125",
fill: "#ce1126"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagBhr);
export default ForwardRef;