@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 720 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagDza = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 900 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M0 0h900v600H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#006233",
d: "M0 0h450v600H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#d21034",
d: "M580 225a150 150 0 100 150 120 120 0 110-150m5 75l-135-44 84 115V229l-84 115z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagDza);
export default ForwardRef;