@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
19 lines (17 loc) • 568 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagDnk = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 37 28",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#c60c30",
d: "M0 0h37v28H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M0 12h12V0h4v12h21v4H16v12h-4V16H0z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagDnk);
export default ForwardRef;