@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
24 lines (22 loc) • 776 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagLca = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 600 300",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#6Cf",
d: "M0 0h600v300H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#FFF",
d: "M200 274l100-14 100 14L300 27z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M213.5 274l86.5-14 86.5 14L300 60z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#FCD116",
d: "M200 274h200L300 150z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagLca);
export default ForwardRef;