@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
24 lines (22 loc) • 681 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagLao = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 600 400",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#ce1126",
d: "M0 0h600v400H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#002868",
d: "M0 100h600v200H0z"
}), /*#__PURE__*/ React.createElement("circle", {
fill: "#fff",
cx: 300,
cy: 200,
r: 80
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagLao);
export default ForwardRef;