@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
21 lines (19 loc) • 571 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagPlw = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 800 500",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#09F",
d: "M0 0h800v500H0z"
}), /*#__PURE__*/ React.createElement("circle", {
fill: "#FF0",
cx: 350,
cy: 250,
r: 150
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagPlw);
export default ForwardRef;